Advertisement
yonidrori

Untitled

Oct 9th, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. function Kiddie(t)
  2. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  3. Text= t; -- Required. Has to be a string!
  4. Color=Color3.new(0,1,1); -- Cyan is (0,255/255,255/255) -- Optional
  5. Font=Enum.Font.SourceSansBold; -- Optional
  6. FontSize=Enum.FontSize.Size18; -- Optional
  7. })
  8. end
  9. Kiddie("Today I Show You How I (abakarir) Fuckkingg Otherrss!")
  10. Kiddie("Welcome "..game.Players.LocalPlayer.Name.."!")
  11.  
  12. game.PlayerAdded:connect(function(plr)
  13. Kiddie(plr.Name.."Joined The Game!")
  14. end)
  15.  
  16. game.Players.PlayerRemoving:connect(function(player)
  17. Kiddie(player.Name.."Has Left!")
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement