Advertisement
SirMeme

HAMII BEYBALDE AUTO FARM N SHIT

Jun 16th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. --[[ Made by Hamii / Hamiii#4518. DISCORD SERVER: https://discord.gg/7HrfDJ7 ]]--
  2. print("Beybye by Hamii loaded!")
  3. --[[ Settings ]]--
  4. local AutoTeleport = true -- use if you're a begginer
  5. local AutoUpgrade = true -- auto uses your points to upgrade strength and stamina
  6. local StunBey = true -- better if you don't want to move with the beyblade
  7. local MaxDistance = 100 -- max distance your beyblade goes to
  8. _G.Farm = true -- if you want to farm level, bey points and cash enable this
  9. _G.BeyKill = false -- if you want to kill beyblades that are weaker than you enable this
  10.  
  11. --[[ Do not edit ]]--
  12. local Player = game:GetService("Players").LocalPlayer
  13. local Character = Player.Character
  14. local Root = Character.HumanoidRootPart
  15. local Humanoid = Character.Humanoid
  16. local Beyblades = workspace.beyblades
  17. local Security = Player:WaitForChild("PlayerScripts"):FindFirstChild("")
  18. Security.Disabled = true
  19. Security:Destroy()
  20. if AutoTeleport then
  21. Root.CFrame = CFrame.new(-130, -2, -680)
  22. end
  23. Number = 0
  24.  
  25. while wait() do
  26. if not game.Workspace.beyblades:FindFirstChild(Player.Name) then
  27. Number = Number + 1
  28. if AutoTeleport then
  29. Root.CFrame = CFrame.new(-130, -2, -680)
  30. end
  31. game.ReplicatedStorage.event:FireServer("launch")
  32. repeat wait() until Beyblades:FindFirstChild(Player.Name)
  33. print("Spawned Beyblade (x" .. Number .. ")")
  34. else
  35. local bey = Beyblades:FindFirstChild(Player.Name)
  36. if StunBey then
  37. bey.hum.WalkSpeed = 0
  38. end
  39. if AutoUpgrade then
  40. game:GetService("ReplicatedStorage"):FindFirstChild("event"):FireServer("attri", os.time(), "atk")
  41. game:GetService("ReplicatedStorage"):FindFirstChild("event"):FireServer("attri", os.time(), "stam")
  42. end
  43. if _G.Farm then
  44. for _,v in pairs(workspace.mobs:GetChildren()) do
  45. v.PrimaryPart.CanCollide = false
  46. if (bey.Torso.Position - v.PrimaryPart.Position).magnitude <= MaxDistance then
  47. bey.Torso.CFrame = CFrame.new(v.PrimaryPart.Position)
  48. end
  49. end
  50. end
  51. if _G.BeyKill then
  52. for _,v in pairs(workspace.beyblades:GetChildren()) do
  53. if v.Name ~= Player.Name then
  54. local bey = Beyblades:FindFirstChild(Player.Name)
  55. local stats = v.stats
  56. if stats.atk.Value < bey.stats.atk.Value and stats.stam.Value < bey.stats.stam.Value then
  57. bey["Torso"].CFrame = CFrame.new(v["Torso"].Position)
  58. end
  59. end
  60. end
  61. end
  62. end
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement