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

why is Touched event not firing???

Asked by 2 years ago
local Player = game.Players.LocalPlayer


local function OnTouched()
        local Menu = Player.PlayerGui:WaitForChild("Menu")
        Menu.Frame.Visilbe = true
        Menu.Close.Visible = true
end

script.Parent.Touched:Connect(OnTouched)
0
nothing on Output totosimamora608 61 — 2y
0
You need to use a regular script and fire a remote event to the client, then you can use OnClientEvent and put a local script in the menu to make it visible. jorcorrs 76 — 2y
0
It says FireClient: player argument must be a Player object totosimamora608 61 — 2y

Answer this question