Advertisement
asdadsasd

E

Nov 20th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. TP coins :
  2. local plr = game.Players.LocalPlayer
  3. for i,v in pairs(game.Workspace.CoinsHolder:GetChildren()) do
  4. if v and plr.Character:FindFirstChild("HumanoidRootPart") and v:IsA("MeshPart") then --may want to change meshpart to part if it's a part
  5. wait(1) --adjust this to whatever
  6. plr.Character.HumanoidRootPart.CFrame = v.CFrame * CFrame.new(0,1,0)
  7. end
  8. end
  9. Auto farm :
  10. while true do
  11. local Event = game:GetService("ReplicatedStorage").Events.Clicked
  12. Event:FireServer()
  13.  
  14. wait()
  15. end
  16.  
  17. auto farm and auto sell:
  18. local plr = game.Players.LocalPlayer
  19. local char = plr.Character
  20. local hum = char.HumanoidRootPart
  21. local rs = game:GetService("RunService").RenderStepped
  22. nc = true
  23. if nc == true then
  24. rs:Connect(function()
  25. char.Humanoid:ChangeState(11)
  26. end)
  27. end
  28. local rs = game:GetService("RunService").RenderStepped
  29. while rs:wait() do
  30. for i,v in pairs(plr.Backpack:GetChildren()) do
  31. if v.ClassName == "Tool" then
  32. v.Parent = plr.Character
  33. end
  34. end
  35. game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
  36. hum.CFrame = CFrame.new(game:GetService("Workspace").Locations.Sell.Position + Vector3.new(0,-12,0))
  37. game:GetService("ReplicatedStorage").Events.Sell:FireServer()
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement