Advertisement
sripts

Untitled

Aug 20th, 2020
2,205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 0.46 KB | None | 0 0
  1. local isAdmin = {["1stiven12"] = true, ["Player1"] = true} -- to add more players just do this for example local isAdmin = {["1stiven12"] = 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement