Advertisement
yonidrori

Untitled

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