Advertisement
Guest User

Untitled

a guest
May 21st, 2019
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. -- inf money, diamonds, whatever
  2. -- game - https://www.roblox.com/games/2580982329/NEW-Pods-Texting-Simulator
  3. -- written by mrob
  4. -- currencies
  5. local A_1 = 72032498231
  6. local A_2 = 7399309212
  7. local A_3 = 1246274521
  8. local A_4 = 999999999999999
  9. local Event = game:GetService("ReplicatedStorage").Events.TerminalReward
  10. Event:FireServer(A_1, A_2, A_3, A_4)
  11. -- skins (robux skins)
  12. list = {"Green Sparkle", "Red Sparkle", "Purple Sparkle", "Blue Sparkle", "Yellow Sparkle", "Teal Sparkle", "Galacticly Pink", "Birhgtly Galaxy", "Blue Space", "Space Power", "Infinite Void", "The Last Frontier", "Interplanetary Conquerer"}
  13. for i = 1, #list do
  14. local A_1 = list[i]
  15. local Event = game:GetService("ReplicatedStorage").Events.GiveUnboxed
  16. Event:FireServer(A_1)
  17. end
  18. -- auto text
  19. while wait() do
  20. for i = 1, 10000 do
  21. wait()
  22. for i = 1, 10 do
  23. local A_1 = "Computer"
  24. local Event = game:GetService("ReplicatedStorage").Events.SendTexts
  25. Event:FireServer(A_1)
  26. end
  27. end
  28. local Event = game:GetService("ReplicatedStorage").Events.Save
  29. Event:FireServer()
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement