kingkoolie

Untitled

Feb 18th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(plr) script:Clone().Parent = plr end)
  2. workspace:FindFirstChild("JudgementAdmin").JudgementCom.OnClientEvent:connect(function(txt)
  3. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  4. Text = txt; --This is a required field, it will allow you to set the message to any string you want.
  5. Color = Color3.new(0,1,0); --This is optional, it will allow you to add a custom color to the chat, however will default to Color3.new(255/255, 255/255, 243/255) if not set.
  6. Font = Enum.Font.Cartoon; -- Optional, defaults to Enum.Font.SourceSansBold --This is optional, this field will allow you to change the font of the text to any of the current 7 fonts you want.
  7. FontSize = Enum.FontSize.Size42; -- Optional, defaults to Enum.FontSize.Size18 --This is once again optional, and you can change it to any of the existing sizes.
  8. })
  9. end)
  10. workspace:FindFirstChild("JudgementAdmin").JudgementCom:FireServer()
Advertisement
Add Comment
Please, Sign In to add comment