Greetings,
Is it possible to have a click detector function a FireServer()
Because need to have some animations with a Motor Desire Angle, It works on a tool but would like to have it as a button
Regards, If its even possible?
plane = script.Plane.Value wait(3) script.EngineThudIgnitor:Play() script.Parent.Parent.Parent.Switch.CockpitDisplays.Display3.Main.EngineStats.MessageBpx.Startvalue1.Visible = true script.Parent.Parent.Parent.Switch.CockpitDisplays.Display3.Main.EGT1.TrottleBox.Visible = true script.Parent.Parent.Parent.Switch.CockpitDisplays.Display3.Main.EGT1.ValueText.Visible = true wait(3.5) plane.Parent.Engine_Start1:FireClient() end
it is possible to get a player from a clickdetector(ish). so with that we can(should be able to) FireServer() from a clickdetector:
local click_detector = -- your click detetcor local remote_event = -- your remote event click_detector.MouseClick:connect(function(player) remote_event:FireClient(player) end)