ADVERTISEMENTREMOVE ADS
auto farm 1m point per minute (it will lag for a minute)
46,892 views
Description
auto farm 1m point per minute
wait a minute before it work
Tested with
ADVERTISEMENTREMOVE ADS
25 Lines • 618 Bytes
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
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS





Comments