If I want to make a GUI just for one player, not local players, where should I put the script?Workspace, server storage? Also How am I able to put it only in my Player GUI not everyones?
Technically this question isn't supposed to be on the site, since it's a request. But I'll help you anyway...
--in a LocalScript local gui = script.Parent --in some GUI object, i'm not going to do everything for you if game.Players.LocalPlayer.Name == "brokenrares" then script.Parent.Visible = true else script.Parent.Visible = false end