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

im making a door with a bool value and its not working please help??

Asked by 5 years ago

this is the script i have

01bool = script.Parent.Parent.Value
02door = script.Parent.Parent
03 
04function openclose()
05    bool.Value = true
06    door.Transparency = 0.5
07    wait()
08    door.CanCollide = false
09    print("lol")
10    wait()
11    while bool.Value == true do
12        door.Transparency = 1
13        door.CanCollide = true
14        bool.Value = false
15        print("lol2")
16end
17 
18script.Parent.ClickDetector.MouseClick:Connect(openclose)

do i need a bool value or another value? i'm confused help if you want.

0
Check that you're referencing the bool and door correctly. If script.Parent.Parent is a BoolValue, then bool is correct and door isn't, and vice versa vector3_zero 1056 — 5y
0
thank you that helped EllaTheFloofyFox 106 — 5y
0
also your missing an end Benbebop 1049 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

vector3_zero helped so thanks :DD

Ad

Answer this question