1 | local path = script.Parent.SaveObject.Value |
2 |
3 | while true do |
4 | if script.Parent.WreckTree.Value = = "true" then |
5 | print ( "comon" ) |
6 | path:Destroy() |
7 | end |
8 | wait( 0.1 ) |
9 | end |
If value is true it prints comon and destroys the path (saveobject = game.Workspace.Tree) and wont work and wont print, why not?
in true get rid of the speech marks, if its a bool value, your code will look like this
1 | local path = script.Parent.SaveObject.Value |
2 |
3 | while true do |
4 | if script.Parent.WreckTree.Value = = true then |
5 | print ( "comon" ) |
6 | path:Destroy() |
7 | end |
8 | wait( 0.1 ) |
9 | end |