Advertisement
HowToRoblox

MessageCreator

Jun 17th, 2021
2,618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. game.Players.PlayerRemoving:Connect(function(plr)
  2.    
  3.     game.StarterGui:SetCore("ChatMakeSystemMessage", {
  4.        
  5.         Text = plr.Name .. " has left!",
  6.        
  7.         Color = Color3.fromRGB(255, 115, 0),
  8.         Font = Enum.Font.SourceSansBold,
  9.         TextSize = 18,
  10.     })
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement