Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

door script only expands and doesnt retract? [solved]

Asked by
RAFA1608 543 Moderation Voter
5 years ago
Edited by User#5423 5 years ago

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:

01local gate = script.Parent
02local button = gate.Parent["gate button"]
03local clickdetector = button.ClickDetector
04local debounce = false
05local opened = false
06clickdetector.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 - Vector3.new(0,0.125,0)
12            gate.Size = gate.Size + Vector3.new(0,0.25,0)
13        end
14        opened = false
15        debounce = false
View all 27 lines...

thank you for your help :p

0
maybe add a wait(.1) when ur closing it HappyTimIsHim 652 — 5y
0
maybe add a wait(.1) when ur closing it HappyTimIsHim 652 — 5y
0
oh... i forgot to do that... hold on RAFA1608 543 — 5y
0
now it doesnt even work :/ RAFA1608 543 — 5y
0
add [Solved] to mark as self solved User#5423 17 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago

Just use an else because it's a bool, it can only hold 2 values.

01local gate = script.Parent
02local button = gate.Parent["gate button"]
03local clickdetector = button.ClickDetector
04local debounce = false
05local opened = false
06clickdetector.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 - Vector3.new(0,0.125,0)
12            gate.Size = gate.Size + Vector3.new(0,0.25,0)
13        end
14        opened = false
15        debounce = false
View all 27 lines...
0
it didnt make a difference RAFA1608 543 — 5y
0
Is it local or server BradNewTypical 232 — 5y
0
its a server script RAFA1608 543 — 5y
0
maybe try doing the rot with remotes BradNewTypical 232 — 5y
Ad
Log in to vote
0
Answered by
RAFA1608 543 Moderation Voter
5 years ago

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:

01local gate = script.Parent.Parent.Gate
02local button = script.Parent
03local clickdetector = script.Parent.ClickDetector
04local debounce = false
05local opened = false
06clickdetector.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 - Vector3.new(0,0.125,0)
15            gate.Size = gate.Size + Vector3.new(0,0.25,0)
View all 30 lines...
0
Wow i wrote up a whole answer saying this and then i refreshed. Using for i loops to open a door is not the best, tween service is much smoother and arguably easier to use iiConstable_Subwayx 130 — 5y
0
oh really? well, i dont know what a tween service is, but i might check it out later. Thank you. RAFA1608 543 — 5y

Answer this question