DerpyFox

omnom

Sep 20th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. --==Settings==--
  2.  
  3. local tpcoins = true
  4. local autosell = true
  5. local autofarm = true
  6.  
  7. --==Script==--
  8. game:GetService('RunService').Stepped:Connect(function()
  9. --==AutoSell==--
  10. if autosell == true then
  11. for _,v in pairs(game.Workspace.Sell:GetChildren()) do
  12. v.Sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  13. if v.Sell:FindFirstChild("BillboardGui") ~= nil then
  14. v.Sell:FindFirstChild("BillboardGui"):Destroy()
  15. end
  16. end
  17. end
  18. --==CoinTp==--
  19. if tpcoins == true then
  20. for _,v in pairs(game.Workspace.Coins:GetChildren()) do
  21. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  22. end
  23. end
  24. --==AutoFarm==--
  25. if autofarm == true then
  26. if game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") ~= nil then
  27. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool"))
  28. end
  29. local A_1 =game.Players.LocalPlayer.otherstats.EquippedBackpackRef.Value +1
  30. local Event = game:GetService("ReplicatedStorage").Events.BuyEquipBackpack
  31. Event:FireServer(A_1)
  32.  
  33. local A_1 = game.Players.LocalPlayer.otherstats.EquippedFoodRef.Value +1
  34. local Event = game:GetService("ReplicatedStorage").Events.BuyEquipFood
  35. Event:FireServer(A_1)
  36.  
  37. local Event = game:GetService("ReplicatedStorage").Events.Rebirth
  38. Event:FireServer()
  39. local Event = game:GetService("Workspace").FunkySquad413Son.Food.E
  40. Event:FireServer()
  41. end
  42. end)
Add Comment
Please, Sign In to add comment