Advertisement
rrixh

unvrsl reset button

Oct 10th, 2023
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. game.Loaded:Wait()
  2.  
  3. --in kase its already disabled
  4. starterthing:SetCore("ResetButtonCallback", true)
  5.  
  6. --the automation
  7. local starterthing = game:GetService("StarterGui")
  8. while true do
  9.     starterthing.Changed:Wait()
  10.     if starterthing:GetCore("ResetButtonCallback") == false then
  11.         starterthing:SetCore("ResetButtonCallback", true)
  12.     end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement