I am making a door for filtering enabled,its working on Roblox Studio but its isn't working on Online.How to make this for RemoteEvent? Script:
01 | function onClicked() |
02 | Door = script.Parent.Parent.Door |
03 |
04 | if Door.open.Value = = true then |
05 | Door.open.Value = false |
06 | for i = 1 , 10 do |
07 | Door.CFrame = CFrame.new(Door.Position + Vector 3. new( 0 , 0.1 , 0 )) |
08 | wait( 0.1 ) |
09 | end |
10 | end |
11 | end |
12 |
13 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
Line two must be local Door. And this must be in a serverscript.
01 | function onClicked() |
02 | local Door = script.Parent.Parent.Door |
03 |
04 | if Door.open.Value = = true then |
05 | Door.open.Value = false |
06 | for i = 1 , 10 do |
07 | Door.CFrame = CFrame.new(Door.Position + Vector 3. new( 0 , 0.1 , 0 )) |
08 | wait( 0.1 ) |
09 | end |
10 | end |
11 | end |
12 |
13 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |