-- @build-failed -- auto roll / fast roll local waitTime = 0.3 -- second(s) -- You can change this value, but be aware of 'Exploit Detected - Too Many Rolls Per Minute'. -- Using 0 seconds or 0.1 seconds was detected. -- You can use 1 second for your main account to avoid bans, you can also try 0.29 or 0.25 even 0.2, 0.5 second per roll is just too slow. -- If you reach the limit of three attempts, your account will be banned! -- Please test these settings on a alt account first. -- Use a private server if you don’t want to get reported to the developers. if getgenv().scriptEnabled then -- exit the script, if it has already been executed return end getgenv().scriptEnabled = true local rollEvent = game:GetService("ReplicatedStorage"):WaitForChild("L5_z%Q1!Rx_") while task.wait(waitTime) do local args = { "manual", tostring(tick()).."_"..tostring(math.random(1000,9999)) } rollEvent:FireServer(unpack(args)) end