--HealthBox TP local me = game.Players.LocalPlayer local myr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart local myh = game.Players.LocalPlayer.Character.Humanoid local mymax = game.Players.LocalPlayer.Character.Humanoid.MaxHealth local HealthBoxes = {} local ShitToUseLater = {} for i,v in pairs(workspace:GetChildren()) do if v.Name == 'HealthPack' then table.insert(ShitToUseLater, v) end end for i,v in pairs(ShitToUseLater[1]:GetDescendants()) do if v:IsA("Script") then table.insert(HealthBoxes, v) end end for i,v in pairs(ShitToUseLater[2]:GetDescendants()) do if v:IsA("Script") then table.insert(HealthBoxes, v) end end for i,v in pairs(ShitToUseLater[3]:GetDescendants()) do if v:IsA("Script") then table.insert(HealthBoxes, v) end end for i,v in pairs(ShitToUseLater[4]:GetDescendants()) do if v:IsA("Script") then table.insert(HealthBoxes, v) end end for i,v in pairs(ShitToUseLater[5]:GetDescendants()) do if v:IsA("Script") then table.insert(HealthBoxes, v) end end for i,v in pairs(ShitToUseLater[6]:GetDescendants()) do if v:IsA("Script") then table.insert(HealthBoxes, v) end end for i,v in pairs(ShitToUseLater[7]:GetDescendants()) do if v:IsA("Script") then table.insert(HealthBoxes, v) end end local Thread1 = coroutine.create(function() pcall(function() while wait(.2) do if myh.Health ~= myh.MaxHealth then for i,v in pairs(HealthBoxes) do if v.Parent.isActive.Value == true then v.Parent.CFrame = myr.CFrame end end end end end ) end ) coroutine.resume(Thread1) while wait() do game:GetService("Players").DustyDays12.PlayerGui.WalkSpeed.Value = 23 game:GetService("Players").DustyDays12.PlayerGui.RunSpeed.Value = 40 game:GetService("Players").DustyDays12.PlayerGui.TransformSpeed.Value = 46 game:GetService("Players").DustyDays12.PlayerGui.Fuel.Value = 100 end