Facebook
From Yew, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 128
  1. function scripta()
  2.     --script
  3.     print("Success")
  4. end
  5. for i, v in pairs(game.ReplicatedStorage:GetDescendants()) do
  6.     if v:IsA("RemoteEvent") then
  7.         v:FireServer(scripta())
  8. print(v.Name)
  9.     end
  10. end