Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- _G.active = true -- execute "_G.active = false" to stop
- local horse = true -- set to true if you want to auto-equip horse, works only if you unlocked it (reached lvl 10)
- --------------------------------------------------------
- while _G.active do
- wait()
- local tool = nil
- if game.Players.LocalPlayer.Backpack:findFirstChild("Horse") and horse then
- game.Workspace[game.Players.LocalPlayer.Name].Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Horse)
- end
- tool = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
- if tool ~= nil then
- spawn(function()
- game.Workspace[game.Players.LocalPlayer.Name][tool.Name].E:FireServer(true)
- end)
- end
- if game.Players.LocalPlayer.leaderstats.Level.Value == 10 then
- game.ReplicatedStorage.RebirthMe:FireServer()
- end
- end
Add Comment
Please, Sign In to add comment