Hi,
I want to make my surface gui so that only I can see it. Currently everyone can see it but I want it like an admin gui but for the surface.
Thanks Kieran
Okay so for a gui to only be visible for a single person it must be in the PlayerGui.
I'm not sure how you want this to work but inside the script you need it to set the adornee on the brick you want.
script.Parent.Adornee = game.Workspace.Brick
Put this in the Gui; in a local script:
repeat wait() until game.Players.LocalPlayer if game.Players.LocalPlayer.Name == "kieranm9090" then print("Is me") else script.Parent:destroy() end