chandreeeee

Hack Farming simulator

Mar 27th, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1. _G.active = true -- execute "_G.active = false" to stop
  2. local horse = true -- set to true if you want to auto-equip horse, works only if you unlocked it (reached lvl 10)
  3. --------------------------------------------------------
  4. while _G.active do
  5. wait()
  6.  
  7. local tool = nil
  8. if game.Players.LocalPlayer.Backpack:findFirstChild("Horse") and horse then
  9. game.Workspace[game.Players.LocalPlayer.Name].Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Horse)
  10. end
  11.  
  12. tool = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
  13.  
  14. if tool ~= nil then
  15. spawn(function()
  16. game.Workspace[game.Players.LocalPlayer.Name][tool.Name].E:FireServer(true)
  17. end)
  18. end
  19.  
  20. if game.Players.LocalPlayer.leaderstats.Level.Value == 10 then
  21. game.ReplicatedStorage.RebirthMe:FireServer()
  22. end
  23. end
Add Comment
Please, Sign In to add comment