here is it, i maked a
1 | while wait( 5 ) do |
then i put end after the script
01 | while true do |
02 |
03 |
04 | script.Parent.Size = Vector 3. new( 0.5 , 0.25 , 0.5 ) |
05 | script.Parent.Parent.eye_ 1. Size = Vector 3. new( 0.5 , 0.25 , 0.5 ) |
06 | wait( 0.5 ) |
07 | script.Parent.Parent.eye_ 1. Size = Vector 3. new( 0.5 , 0.5 , 0.5 ) |
08 | script.Parent.Size = Vector 3. new( 0.5 , 0.5 , 0.5 ) |
09 |
10 |
11 | end ) |
but there is a red line below the "end)" if i remove the ")" the script will not work and will show a error in output, but if i remove the end, the script stop working... someone help pls
Well I think the problem is that you are missing an end. If you have a function running then keep the end) but put end before it like this
01 | while true do |
02 |
03 |
04 | script.Parent.Size = Vector 3. new( 0.5 , 0.25 , 0.5 ) |
05 | script.Parent.Parent.eye_ 1. Size = Vector 3. new( 0.5 , 0.25 , 0.5 ) |
06 | wait( 0.5 ) |
07 | script.Parent.Parent.eye_ 1. Size = Vector 3. new( 0.5 , 0.5 , 0.5 ) |
08 | script.Parent.Size = Vector 3. new( 0.5 , 0.5 , 0.5 ) |
09 |
10 | end |
end)
or if you don't have a function then just remove the ) from the end