Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ BEY AURA MADE BY HAMII | Hamiii#4518 | --]]
- -- DISCORD SERVER: https://discord.gg/RpDrwrH
- --[[ Settings ]]--
- hotkey = "e" -- default is e, you can change to what you want
- automatic = true -- set to false if you want to have a safer farming (or not) but slower
- autoupgrade = true -- automatically upgrades "Strength" and "Stamina" (you need them)
- viewmobs = true -- if you want to see the rocks / mobs you hit
- insta = true -- buggy / laggy (works some times depends on ur strength, stamina | pc ?)
- playerspeed = false -- set to true if you want speed for your player
- beyspeed = true -- set to false if you don't want speed for your beyblade
- speed = 75 -- set your beyblade's speed
- distance = 100 -- how far your beyblade will go (100 is default, setting higher than 100 may get you kicked)
- --[[ Do not edit ]]--
- local plr = game:GetService("Players").LocalPlayer
- local chr = plr.Character
- local mouse = plr:GetMouse()
- local state = "Disabled"
- warn("Thanks for using Hamii's beyblade script! Enable it by pressing '" .. hotkey .. "' key!")
- mouse.KeyDown:connect(function(key)
- if key == hotkey then
- if not game.Workspace.beyblades:FindFirstChild(plr.Name) then
- state = "Disabled"
- game.ReplicatedStorage.event:FireServer("launch", 1000)
- print("Script is: " .. state .. "! Press '" .. hotkey .. "' key to enable!")
- else
- state = "Enabled"
- print("Script is: " .. state .. "!")
- local bey = game.Workspace.beyblades:FindFirstChild(plr.Name)
- local beyhum = bey:FindFirstChild("hum")
- if beyspeed then
- beyhum.WalkSpeed = speed
- end
- local hum = chr:FindFirstChild("Humanoid")
- if playerspeed then
- hum.WalkSpeed = speed
- end
- while wait() do
- if autoupgrade then
- game.ReplicatedStorage.event:FireServer("attri", os.time(), "atk")
- game.ReplicatedStorage.event:FireServer("attri", os.time(), "stam")
- end
- for _,v in pairs(workspace.mobs:GetChildren()) do
- if v.PrimaryPart.CanCollide == true then
- v.PrimaryPart.CanCollide = false
- end
- if viewmobs then
- v.PrimaryPart.Transparency = 0
- else
- v.PrimaryPart.Transparency = 1
- end
- if (bey.Torso.Position - v.PrimaryPart.Position).magnitude <= distance then
- if insta then
- v.PrimaryPart.CFrame = CFrame.new(bey.Torso.Position)
- bey.Torso.CFrame = CFrame.new(v.PrimaryPart.Position)
- else
- while wait() and v.Parent == workspace.mobs do
- v.PrimaryPart.CFrame = CFrame.new(bey.Torso.Position)
- bey.Torso.CFrame = CFrame.new(v.PrimaryPart.Position)
- end
- end
- else
- end
- end
- end
- end
- end
- end)
Add Comment
Please, Sign In to add comment