local ReplicatedStorage = game:GetService("ReplicatedStorage")
local rewardRemotes = {
"GetPoints",
"PointsBroadcast",
"groupreward",
"boss rewards",
"Rebirth"
}
local repeatCount = 999999
for i = 1, repeatCount do
for _, name in ipairs(rewardRemotes) do
local remote = ReplicatedStorage:FindFirstChild(name)
if remote then
if remote:IsA("RemoteEvent") then
remote:FireServer(99999999999, true)
elseif remote:IsA("RemoteFunction") then
local result = remote:InvokeServer(99999999999, true)
print("InvokeServer result for", name, ":", result)
end
end
end
end
Comments
No comments yet
Be the first to share your thoughts!