Advertisement
HowToRoblox

MessageMaker

Dec 19th, 2020
5,124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. game.ReplicatedStorage.PlayerJoinedRE.OnClientEvent:Connect(function(plrName)
  2.  
  3.     game.StarterGui:SetCore("ChatMakeSystemMessage", {
  4.         Text = plrName .. " has joined!",
  5.         Color = Color3.fromRGB(255, 115, 0),
  6.         Font = Enum.Font.SourceSansBold,
  7.         TextSize = 18,
  8.     })
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement