Advertisement
ScriptingGuy

Texting Simulator Script

Mar 7th, 2020
2,002
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. The Game Link : https://www.roblox.com/games/2580982329/PRIZE-Texting-Simulator
  2. Discord Link : https://discordapp.com/channels/686554761901768721/686664520596324435
  3.  
  4. ---Inf Coins / Gems / Whatever
  5. -- currencies
  6. local A_1 = 9999999999999999
  7. local A_2 = 9999999999999999
  8. local A_3 = 9999999999999999
  9. local A_4 = 9999999999999999
  10. local Event = game:GetService("ReplicatedStorage").Events.TerminalReward
  11. Event:FireServer(A_1, A_2, A_3, A_4)
  12. -- skins (robux skins)
  13. 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"}
  14. for i = 1, #list do
  15. local A_1 = list[i]
  16. local Event = game:GetService("ReplicatedStorage").Events.GiveUnboxed
  17. Event:FireServer(A_1)
  18. end
  19.  
  20.  
  21. -- Auto Text
  22. while wait() do
  23. for i = 1, 10000 do
  24. wait()
  25. for i = 1, 10 do
  26. local A_1 = "Computer"
  27. local Event = game:GetService("ReplicatedStorage").Events.SendTexts
  28. Event:FireServer(A_1)
  29. end
  30. end
  31. local Event = game:GetService("ReplicatedStorage").Events.Save
  32. Event:FireServer()
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement