ADVERTISEMENTREMOVE ADS
Infinite Money
47,727 views

Script Preview
Description
Functionality:
Retrieves the ClaimChest remote event from ReplicatedStorage by accessing:
Packages → Knit → Services → ClaimService → RE → ClaimChest.Runs an infinite loop with a 0.2-second delay between iterations.
Within each iteration, it fires the ClaimChest event 30 times, likely to maximize chest claims efficiently.
Access Remote Event:
Uses WaitForChild to ensure all necessary objects are loaded before proceeding.
Loop Execution:
Runs indefinitely with a short wait time to prevent excessive load.
Fires the event multiple times per iteration to increase efficiency.
ADVERTISEMENTREMOVE ADS
14 Lines • 369 Bytes
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ClaimChest = ReplicatedStorage:WaitForChild("Packages")
:WaitForChild("Knit")
:WaitForChild("Services")
:WaitForChild("ClaimService")
:WaitForChild("RE")
:WaitForChild("ClaimChest")
while wait(0.2) do
for _ = 1, 30 do
ClaimChest:FireServer()
end
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments
Very good script but why no one uses it