Faire une interface graphique qui ne peut être visible que par le propriétaire Roblox

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
Xanthous Xenomorph