AreYouMental110

bubble gum simulator [idk if it works or its a script]

Mar 18th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 125
  2. local Closest
  3. local Distance = 10000
  4.  
  5. _G.Enabled = true
  6. while _G.Enabled == true do
  7. for i,v in pairs(game:GetService("Workspace").Pickups:GetChildren()) do
  8. if v:IsA("MeshPart") and v.Name == "Part" and v.BrickColor.Name == "Deep orange" then
  9. if v.Position.Y <= game.Players.LocalPlayer.Character:WaitForChild("Head").Position.Y then
  10. local newDistance = (v.Position).magnitude
  11. if newDistance < Distance then
  12. game.Players.LocalPlayer.Character.Humanoid:MoveTo(tostring(v.CFrame))
  13. end
  14. end
  15. end
  16. end
  17. wait()
  18. end
Add Comment
Please, Sign In to add comment