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

How to make CFrame script to RemoteEvent?

Asked by 7 years ago

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:

01function 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 + Vector3.new(0, 0.1, 0))
08            wait(0.1)
09        end
10    end
11end
12 
13script.Parent.ClickDetector.MouseClick:connect(onClicked)
0
activate an event when the mouse is clicked and change the doors cframe on the server NexanianStudios 91 — 7y
0
you could do this all with a script and wouldn't even need an event Vulkarin 581 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago

Line two must be local Door. And this must be in a serverscript.

01function 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 + Vector3.new(0, 0.1, 0))
08            wait(0.1)
09        end
10    end
11end
12 
13script.Parent.ClickDetector.MouseClick:connect(onClicked)
0
can i get remoteevent script? FrezeTagger 75 — 7y
0
you don't need a remoteevent for this. DaWarTekWizard 169 — 7y
Ad

Answer this question