All Characters/Max stats/Inf Fuel/HealthBox TP

Script Credit :- PooNilla #2629
Features

--Inf Fuel For Planes Modes/Max Stats(Except Max HP)/Unlock All Characters
-- HealthBoxTP( It will tp healthboxes to you once you take damage super fast but healthboxes don't respawn instantly dont take dmg too fast or you will still die)
YOU WILL NEED TO RE-EXACUTE THE SCRIPT IF YOU DIE

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

--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").LocalPlayer.PlayerGui.WalkSpeed.Value = 23 game:GetService("Players").LocalPlayer.PlayerGui.RunSpeed.Value = 40 game:GetService("Players").LocalPlayer.PlayerGui.TransformSpeed.Value = 46 game:GetService("Players").LocalPlayer.PlayerGui.Fuel.Value = 100 end