Facebook
From Sweet Pig, 1 Year ago, written in Plain Text.
This paste is a reply to Untitled from Fiery Stork - view diff
Embed
Download Paste or View Raw
Hits: 134
  1. for _, k in pairs(game.Players:GetChildren()) do
  2. print(k.Name)
  3. print("------------------------------------")
  4. for _, v in pairs(k["MAIN_DATA"].Codes:GetChildren()) do
  5. print(v.Value)
  6. local ohString1 = "Codes"
  7. local ohString2 = "Redeem"
  8. local ohTable3 = {
  9. ["Code"] = v.Value,
  10. }
  11.  
  12. game:GetService("ReplicatedStorage").Replicator:InvokeServer(ohString1, ohString2, ohTable3)
  13. end
  14. end