Advertisement
DontDoItIDareU

Beyblade Auto Farm

Jun 15th, 2018
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. --[[ BEY AURA MADE BY HAMII | Hamiii#4518 | --]]
  2. -- DISCORD SERVER: https://discord.gg/RpDrwrH
  3.  
  4. --[[ Settings ]]--
  5. hotkey = "e" -- default is e, you can change to what you want
  6. automatic = true -- set to false if you want to have a safer farming (or not) but slower
  7. autoupgrade = true -- automatically upgrades "Strength" and "Stamina" (you need them)
  8. viewmobs = true -- if you want to see the rocks / mobs you hit
  9. insta = true -- buggy / laggy (works some times depends on ur strength, stamina | pc ?)
  10. playerspeed = false -- set to true if you want speed for your player
  11. beyspeed = true -- set to false if you don't want speed for your beyblade
  12. speed = 75 -- set your beyblade's speed
  13. distance = 100 -- how far your beyblade will go (100 is default, setting higher than 100 may get you kicked)
  14.  
  15. --[[ Do not edit ]]--
  16. local plr = game:GetService("Players").LocalPlayer
  17. local chr = plr.Character
  18. local mouse = plr:GetMouse()
  19. local repStorage = game:GetService("ReplicatedStorage")
  20. local state = "Disabled"
  21. warn("Thanks for using Hamii's beyblade script! Enable it by pressing '" .. hotkey .. "' key!")
  22.  
  23. mouse.KeyDown:connect(function(key)
  24. if key == hotkey then
  25. if not game.Workspace.beyblades:FindFirstChild(plr.Name) then
  26. state = "Disabled"
  27. game.ReplicatedStorage.event:FireServer("launch", 1000)
  28. print("Script is: " .. state .. "! Press '" .. hotkey .. "' key to enable!")
  29. else
  30. state = "Enabled"
  31. print("Script is: " .. state .. "!")
  32. local bey = game.Workspace.beyblades:FindFirstChild(plr.Name)
  33. local beyhum = bey:FindFirstChild("hum")
  34. if beyspeed then
  35. beyhum.WalkSpeed = speed
  36. end
  37. local hum = chr:FindFirstChild("Humanoid")
  38. if playerspeed then
  39. hum.WalkSpeed = speed
  40. end
  41. while wait() do
  42. if autoupgrade then
  43. repStorage:FindFirstChild("event"):FireServer("attri", os.time(), "atk")
  44. repStorage:FindFirstChild("event"):FireServer("attri", os.time(), "stam")
  45. end
  46. for _,v in pairs(workspace.mobs:GetChildren()) do
  47. if v.PrimaryPart.CanCollide == true then
  48. v.PrimaryPart.CanCollide = false
  49. end
  50. if viewmobs then
  51. v.PrimaryPart.Transparency = 0
  52. else
  53. v.PrimaryPart.Transparency = 1
  54. end
  55. if (bey.Torso.Position - v.PrimaryPart.Position).magnitude <= distance then
  56. if insta then
  57. v.PrimaryPart.CFrame = CFrame.new(bey.Torso.Position)
  58. bey.Torso.CFrame = CFrame.new(v.PrimaryPart.Position)
  59. else
  60. while wait() and v.Parent == workspace.mobs do
  61. v.PrimaryPart.CFrame = CFrame.new(bey.Torso.Position)
  62. bey.Torso.CFrame = CFrame.new(v.PrimaryPart.Position)
  63. end
  64. end
  65. else
  66. end
  67. end
  68. end
  69. end
  70. end
  71. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement