Advertisement
jombo091

Creator Joined Script

Nov 15th, 2019
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. --Creator Announcer script by jombo091
  2. --Have fun with it!
  3. -- (NOT AN EXPLOIT)
  4.  
  5. function OnPlayerEntered(player)
  6. if player.userId == game.CreatorId then
  7. local msg = Instance.new("Message")
  8. msg.Parent = game.Workspace
  9. msg.Text = "The creator has joined the server!"
  10. wait(2)
  11. msg:remove()
  12. elseif player:IsFriendsWith(game.CreatorId) then
  13. local msg = Instance.new("Message")
  14. msg.Parent = game.Workspace
  15. msg.Text = "A friend of the creator has joined the server!"
  16. wait(2)
  17. msg:remove()
  18. elseif player:IsBestFriendsWith(game.CreatorId) then
  19. local msg = Instance.new("Message")
  20. msg.Parent = game.Workspace
  21. msg.Text = "A best friend of the creator has joined the server!"
  22. wait(2)
  23. msg:remove()
  24. elseif player.Name == "builderman" or player.Name == "Telamon" or player.Name == "ROBLOX" or player.Name == "RobloShorty" or player.Name == "RobloSam" or player.Name == "RobloTim" or player.Name == "noob007" or player.Name == "MattDusek" or player.Name == "Matt Dusek" or player.Name == "clockwork" or player.Name == "jeditkacheff" or player.Name == "HotThoth" or player.Name == "Hotthoth" or player.Name == "hotthoth" or player.Name == "BrightEyes" or player.Name == "brighteyes" or player.Name == "Brighteyes" or player.Name == "erik.cassel" or player.Name == "ReeseMcBlox" or player.Name == "Madrak" then
  25. local msg = Instance.new("Message")
  26. msg.Parent = game.Workspace
  27. msg.Text = "A ROBLOX admin has joined this server!" --Just somethin' neat.
  28. wait(2)
  29. msg:remove()
  30. end
  31. end
  32.  
  33. game.Players.ChildAdded:connect(OnPlayerEntered)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement