roblox gui that moves around code example
Example 1: making a gui that can only be visible by owner 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
Example 2: how to make gui for just one player roblox
game:GetService("Players").LocalPlayer.PlayerGui.Map.ImageLabel.Visible = true