How would i do this? Can Anyone Help?
Put this in a
localscript
inside of the Screengui.
local peoplewhocansee = {"digitalzer3","Whoeverelse"} repeat wait() until game.Players.LocalPlayer.Character local can = false for i = 1,#peoplewhocansee do if game.Players.LocalPlayer.Name == peoplewhocansee[i] then can = true end end if can == true then print("yeya") else script.Parent:Destroy() end