Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- _G.AutoOn = false -- false = on, true = off
- _G.SpeedGiving = 0.0000000000000000000000000000000000000000000000000000000001 -- CHange it for how much u want the speed to be
- while _G.AutoOn == false do
- wait(_G.SpeedGiving)
- if game.Players.LocalPlayer.Character then
- local ToolEquipped = nil
- local TotalE = 0
- for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- ToolEquipped = v
- TotalE = TotalE + 1
- end
- end
- if TotalE < 1 then
- for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- TotalE = 0
- v.Parent = game.Players.LocalPlayer.Character
- ToolEquipped = v
- end
- end
- end
- if ToolEquipped ~= nil then
- local Event = ToolEquipped.Handle.up.RemoteEvent
- Event:FireServer()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment