📜  制作一个只有所有者 roblox 才能看到的 gui - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:49.197000             🧑  作者: Mango

代码示例1
local players = game.Players.LocalPlayer
local gui = script.Parent.Frame -- location of the ui

if players.Name == "DrxpLoxs" then
gui.Visible=true
else
print("User is not me, gui hidden")
end