ADVERTISEMENTREMOVE ADS
Game icon

auto farm 1m point per minute (it will lag for a minute)

Script preview thumbnail
Script Preview

Description

auto farm 1m point per minute
wait a minute before it work

Tested with

ADVERTISEMENTREMOVE ADS
25 Lines • 618 Bytes
Raw
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

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS