Advertisement
reset234567890

idk

Apr 16th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. Jewlery Store= Teleport:
  2.  
  3. local A_1 = "teleportHeist"
  4. local A_2 = "The Jeweler Heist"
  5. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  6. Event:FireServer(A_1, A_2)
  7.  
  8. Fleeca Bank Teleport:
  9.  
  10. local A_1 = "teleportHeist"
  11. local A_2 = "Fleeca Bank Heist"
  12. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  13. Event:FireServer(A_1, A_2)
  14.  
  15. Humane Labs Teleport:
  16.  
  17. local A_1 = "teleportHeist"
  18. local A_2 = "Humane Labs Heist"
  19. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  20. Event:FireServer(A_1, A_2)
  21.  
  22. Team Switch Script:
  23.  
  24. local A_1 = "switchTeams"
  25. local A_2 = "TEAMNAMEHERE"
  26. local Event = game:GetService("ReplicatedStorage").RemoteFunction
  27. Event:InvokeServer(A_1, A_2)
  28.  
  29. (Here are some team names)
  30. Professionals
  31. Vagos
  32. Police
  33. Mafia
  34. Military
  35.  
  36. Military Base Teleport:
  37.  
  38. local A_1 = "teleportHeist"
  39. local A_2 = "Military Base"
  40. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  41. Event:FireServer(A_1, A_2)
  42.  
  43.  
  44. Hunter Spawn Script: (PROFESSIONAL YACHT)
  45.  
  46. local A_1 = "spawnPlane"
  47. local A_2 = "Hunter"
  48. local A_3 = 0
  49. local A_4 = "Professionals"
  50. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  51. Event:FireServer(A_1, A_2, A_3, A_4)
  52.  
  53. Hunter Spawn Script: (MILITARY BASE)
  54.  
  55. local A_1 = "spawnPlane"
  56. local A_2 = "Hunter"
  57. local A_3 = 0
  58. local A_4 = "MilitaryBase1"
  59. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  60. Event:FireServer(A_1, A_2, A_3, A_4)
  61.  
  62. Hydra Spawn Script:
  63.  
  64. local A_1 = "spawnPlane"
  65. local A_2 = "Hydra"
  66. local A_3 = 0
  67. local A_4 = "MilitaryBase"
  68. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  69. Event:FireServer(A_1, A_2, A_3, A_4)
  70.  
  71. SAY ANYTHING IN CHAT?!?!?!:
  72.  
  73. local A_1 = "sendMessage"
  74. local A_2 = "MESSAGEGOESHERE"
  75. local Event = game:GetService("ReplicatedStorage").RemoteFunction
  76. Event:InvokeServer(A_1, A_2)
  77.  
  78. Spawn Any Vehicle:
  79.  
  80. local A_1 = "spawnVehicle"
  81. local A_2 = game:GetService("Workspace").HobozDiscord
  82. local A_3 = "VEHICLENAMEHERE"
  83. local A_4 = 0
  84. local Event = game:GetService("ReplicatedStorage").RemoteFunction
  85. Event:InvokeServer(A_1, A_2, A_3, A_4)
  86.  
  87. Things to note:
  88.  
  89. Remember to replace TEAMNAMEHERE on the Team Switch Script with the desired team.
  90. To spawn the Hunter, go to the Military Base helicopter spawn and execute the script.
  91. To spawn the Hunter, go to the Professional Yacht helicopter spawn and execute the script.
  92. Remember that the Hunter Spawn Scripts only work in the two locations provided in the scripts.
  93. You do not need ANY cash to spawn things.
  94. Credit to Slappy826 for ProtoSmasher and Lucky for R2SV2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement