RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a script that destroys a screen gui when a times is done"
-- local script local screenGui = script.Parent local timer = 10 -- set the duration of the timer in seconds while timer > 0 do wait(1) timer = timer - 1 end screenGui:Destroy()