Advertisement
HHLExploits

Untitled

May 10th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. Farm Paper-Balls (Equip Your Tool):
  2. Code:
  3. game:GetService('RunService').RenderStepped:connect(function()
  4. --wait()
  5. local Arg1 = Vector3.new(-0.207824275, -0.793343067, -0.572202504)
  6. local Arg2 = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChildOfClass('Tool')
  7. local Path = game:GetService("ReplicatedStorage").Resources.RemoteEvents.FireEvent
  8. Path:FireServer(Arg1, Arg2)
  9. end)
  10.  
  11. Teleport all coins to you:
  12. Code:
  13. _G.coin = true -- false to stop
  14. while _G.coins do
  15. wait()
  16. local mob = game.Workspace
  17. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  18. for i,v in pairs(mob:GetDescendants()) do
  19. if v.Name == "Normal" and v:FindFirstChild('TouchInterest') then -- Red, Blue, Normal And all you want
  20. plr.CFrame = v.CFrame
  21. end
  22. end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement