Hello, I've been trying to make a gui/textbutton for only 1 specific person. So far, all i've tried hasn't worked. Here is what i've tried:
if game.Players.LocalPlayer.Name == "kingbooker48" then script.Parent.Visible = true
(I am very new to scripting, don't judge me lol)
Hello. Add a LocalScript
in your ScreenGui
and add this:
local player = game.Players.LocalPlayer if player.Name == "JakyeRU" then script.Parent.Parent.Enabled = true end --[[ Change JakyeRU with your name. Change script.Parent.Parent.Enabled = true with your ScreenGui location. --]]