There is a property in scripts called disabled that stops your script from working when you enable it in studio, but i cant seem to figure out how to enable it with a script. If I could figure it out I could use it to fix one of the major bugs in my game. Thanks!
Yeah, that's easy! Disabled is a boolean value under local and normal scripts (notice this can't be done with module scripts!) Sample code:
01 | local NEWSCRIPT = Instance.new( "Script" ) |
02 | NEWSCRIPT.Parent = game.Workspace |
03 | NEWSCRIPT.Name = script |
04 | while true do |
05 | NEWSCRIPT.Disabled = true --Changed the Bool to true |
06 | print ( 'Script was disabled, won' t work until disabled is false .') |
07 | wait( 10 ) |
08 | NEWSCRIPT.Disabled = false --Changed the Bool to false |
09 | print ( 'Script was enabled, will work until disabled is checked to true!' ) |
10 | end |
Hope this helps! Best regards, 2Loos. :)