Advertisement
NukeVsCity

mm3 duppe

Nov 7th, 2020
602
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. local RedeemCode = game:GetService("ReplicatedStorage").Interactions.Server.RedeemCode
  2. local RenderStepped = game:GetService("RunService").RenderStepped
  3. local Codes = {"H4LL0WS","PURP3L","Y3LL0W","LUG3R","3Y3B4LL","R41N","SCYTH3","FR4NK","B4N4N4","S3N","PDJ","P00L","S1L","TURK3Y","V3NT3D","TH0R"}
  4.  
  5. function Redeem()
  6. for i=1,#Codes do
  7. RenderStepped:Connect(function()
  8. RedeemCode:InvokeServer(Codes[i])
  9. end)
  10. end
  11. end
  12.  
  13. RenderStepped:Connect(function()
  14. Redeem()
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement