Advertisement
Guest User

Untitled

a guest
May 19th, 2019
7,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. function Farm()
  2. while wait(0,5) do
  3. local Remote = game.ReplicatedStorage.Events['VacuumObject']
  4. local Coin = game.Workspace.GameComponents.ClientCoins:FindFirstChild('Rebirth Zone - 9').Coin.CFrame.Position
  5. local Arguments = {
  6. [1] = Coin
  7. }
  8.  
  9. Remote:FireServer(unpack(Arguments))
  10. end
  11. end
  12. function sell()
  13.  
  14. while wait(0,5) do
  15. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(14,-6,216)
  16. wait(1)
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(8,-6,201)
  18.  
  19. end
  20. end
  21. function Rebirth()
  22. while wait(1) do
  23. local Remote = game.ReplicatedStorage.Events['Rebirth']
  24. Remote:FireServer()
  25. end
  26. end
  27. function Fix()
  28. if game.Players.LocalPlayer.PlayerGui:FindFirstChild('Notifications') then
  29. game.Players.LocalPlayer.PlayerGui.Notifications:Destroy()
  30. end
  31. end
  32. spawn(sell)
  33. spawn(Farm)
  34. spawn(Rebirth)
  35. spawn(Fix)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement