TheExploitGuy

blade worlds script

Feb 19th, 2021
580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. _G.AutoOn = false -- false = on, true = off
  2. _G.SpeedGiving = 0.0000000000000000000000000000000000000000000000000000000001 -- CHange it for how much u want the speed to be
  3.  
  4. while _G.AutoOn == false do
  5. wait(_G.SpeedGiving)
  6. if game.Players.LocalPlayer.Character then
  7. local ToolEquipped = nil
  8. local TotalE = 0
  9. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  10. if v:IsA("Tool") then
  11. ToolEquipped = v
  12. TotalE = TotalE + 1
  13. end
  14. end
  15. if TotalE < 1 then
  16. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  17. if v:IsA("Tool") then
  18. TotalE = 0
  19. v.Parent = game.Players.LocalPlayer.Character
  20. ToolEquipped = v
  21. end
  22. end
  23. end
  24. if ToolEquipped ~= nil then
  25. local Event = ToolEquipped.Handle.up.RemoteEvent
  26. Event:FireServer()
  27. end
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment