so im making a door for my border game but the door script doesnt seem to work? well, it works, but the door ONLY expands down and doesnt retract. heres the script:
01 | local gate = script.Parent |
02 | local button = gate.Parent [ "gate button" ] |
03 | local clickdetector = button.ClickDetector |
04 | local debounce = false |
05 | local opened = false |
06 | clickdetector.MouseClick:Connect( function () |
07 | if debounce then return end |
08 | if opened = = true then |
09 | debounce = true |
10 | for i = 16.5 , 0.5 , 0.25 do |
11 | gate.Position = gate.Position - Vector 3. new( 0 , 0.125 , 0 ) |
12 | gate.Size = gate.Size + Vector 3. new( 0 , 0.25 , 0 ) |
13 | end |
14 | opened = false |
15 | debounce = false |
thank you for your help :p
Just use an else because it's a bool, it can only hold 2 values.
01 | local gate = script.Parent |
02 | local button = gate.Parent [ "gate button" ] |
03 | local clickdetector = button.ClickDetector |
04 | local debounce = false |
05 | local opened = false |
06 | clickdetector.MouseClick:Connect( function () |
07 | if debounce then return end |
08 | if opened = = true then |
09 | debounce = true |
10 | for i = 16.5 , 0.5 , 0.25 do |
11 | gate.Position = gate.Position - Vector 3. new( 0 , 0.125 , 0 ) |
12 | gate.Size = gate.Size + Vector 3. new( 0 , 0.25 , 0 ) |
13 | end |
14 | opened = false |
15 | debounce = false |
apparently the for loop was wrong :/ it didnt run because the for loop was already finished (startervalue was 16.5 and finish value was 0.5, so, technically it was more than finished?) fixed version:
01 | local gate = script.Parent.Parent.Gate |
02 | local button = script.Parent |
03 | local clickdetector = script.Parent.ClickDetector |
04 | local debounce = false |
05 | local opened = false |
06 | clickdetector.MouseClick:Connect( function (plr) |
07 | print ( "yease" ) |
08 | if debounce = = true then return end |
09 | if opened = = true then |
10 | print ( "its opend but its now closing" ) |
11 | debounce = true |
12 | for XVI = 0.5 , 16.5 , 0.25 do |
13 | wait( 0.1 ) |
14 | gate.Position = gate.Position - Vector 3. new( 0 , 0.125 , 0 ) |
15 | gate.Size = gate.Size + Vector 3. new( 0 , 0.25 , 0 ) |