Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a pcall repeat infinitely?

Asked by 3 years ago

Hi, I don't know how to repeat a pcall infinitely. Does anyone know?

1pcall(function(Succes, Error)
2 
3    StarterGui:SetCore("ResetButtonCallback", false)
4 
5    if Error then
6 
7        StarterGui:SetCore("ResetButtonCallback", false)
8    end
9end)
1
Use the while true do loop MAD_DENISDAILY2 137 — 3y

1 answer

Log in to vote
1
Answered by
CodeWon 181
3 years ago

Simpy use a while true do loop:

01while true do
02 
03    wait(0.1) -- Add a wait so the script doesn't go too fast and break
04 
05    -- All the code below will run every 0.1 seconds because of the wait()
06 
07    local success, failed = pcall(function()
08           StarterGui:SetCore("ResetButtonCallback", false)
09    end)
10 
11    if failed then
12        StarterGui:SetCore("ResetButtonCallback", false)
13    end
14 
15 
16end

I hope this was helpful!

Ad

Answer this question