Hi im trying to make an anti disable script so the client cant disable a local script here is script:
btw it works it just doesnt work on the script itself
01 | function parentChanged() |
02 | script.Parent.Disabled = false |
03 | end |
04 |
05 | function heTried() |
06 | script.Parent.ANTIDISABLE.Disabled = false |
07 | end |
08 |
09 | script.Parent.Changed:Connect(parentChanged) |
10 | script.Parent.ANTIDISABLE.Changed:Connect(heTried) |