Advertisement
PokiHero

Untitled

Jun 13th, 2019
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. local tpcoins = true
  2. local autosell = true
  3. local autofarm = true
  4. game:GetService('RunService').Stepped:Connect(function()
  5. if autosell == true then
  6. for _,v in pairs(game.Workspace.Sell:GetChildren()) do
  7. v.Sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  8. if v.Sell:FindFirstChild("BillboardGui") ~= nil then
  9. v.Sell:FindFirstChild("BillboardGui"):Destroy()
  10. end
  11. end
  12. end
  13. if tpcoins == true then
  14. for _,v in pairs(game.Workspace.Coins:GetChildren()) do
  15. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  16. end
  17. end
  18. if autofarm == true then
  19. local Event = game:GetService("Workspace").FunkySquad413Son.Food.E
  20. Event:FireServer()
  21. end
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement