View difference between Paste ID: wSegb6Mz and KM06RbKR
SHOW: | | - or go back to the newest paste.
1-
local isAdmin = {["NAMEHERE"] = true, ["Player1"] = true} -- to add more players just do this for example local isAdmin = {["NAME"] = true} make sure to add the , at the end then space and do the same
1+
local isAdmin = {["TameDoNotClick"] = true, ["Player1"] = true} -- to add more players just do this for example local isAdmin = {["NAME"] = true} make sure to add the , at the end then space and do the same
2
3
game.Players.PlayerAdded:connect(function(player)
4
wait(2)	
5
	if isAdmin[player.Name] then
6
  		while true do
7
	       	wait(0.3)
8
			player.Character.Head.BillboardGui.TextBox.TextColor3 = Color3.new(math.random(), math.random(), math.random())
9
		end
10
	end
11
end)