RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"command that opens a screen gui"
-- local script in a ScreenGui local screenGui = script.Parent local player = game.Players.LocalPlayer local command = "/openGui" function onChatted(message) if message == command then screenGui.Enabled = not screenGui.Enabled end end player.Chatted:Connect(onChatted)