Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Money script:
  2.  
  3. Execute this first-
  4.  
  5. local me = game.Players.LocalPlayer.Character
  6.  
  7. local targetplayer = game.Workspace.PromptDoors.Rob.Part
  8.  
  9. me.HumanoidRootPart.CFrame = CFrame.new(targetplayer.Position.X, targetplayer.Position.Y, targetplayer.Position.Z)
  10.  
  11. Then this:
  12.  
  13. while wait(0.1) do
  14. local remote = Game["ReplicatedStorage"]["PromptInformation"]["PromptCompleted"]
  15. local args = {
  16. [1] = Game["Workspace"]["PromptDoors"]["Rob"],
  17. [2] = "RobBank"
  18. }
  19. remote:FireServer(unpack(args))
  20. end
  21.  
  22. After this wait a couple of minutes as it gives you money and make sure to wait over a minute. The amount you get is the outcome of how much time you wait. Rejoin when you think you have enough.
  23. Waiting 2 minutes got me 600k
  24.  
  25. Unjail yourself script:
  26.  
  27. local remote = Game["ReplicatedStorage"]["PromptInformation"]["PromptCompleted"]
  28.  
  29. local args = {
  30. [1] = Game["Players"]["fmore079"],
  31. [2] = "Free"
  32. }
  33. remote:FireServer(unpack(args))
  34.  
  35. Make sure to replace "YourNameHere" with your user.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement