Hi, I don't know how to repeat a pcall infinitely. Does anyone know?
1 | pcall ( function (Succes, Error) |
2 |
3 | StarterGui:SetCore( "ResetButtonCallback" , false ) |
4 |
5 | if Error then |
6 |
7 | StarterGui:SetCore( "ResetButtonCallback" , false ) |
8 | end |
9 | end ) |
Simpy use a while true do loop:
01 | while 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 |
16 | end |
I hope this was helpful!