Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local id = 14631334907 -- Put the id item here
- -- this script below will fire all remotes in the game with the id as an argument
- for i,v in pairs(game:GetDescendants()) do
- if v:IsA("RemoteEvent") then
- v:FireServer(id)
- if v:IsA("BindableEvent") then
- v:Fire(id)
- if v:IsA("RemoteFunction") then
- v:InvokeServer(id)
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment