Advertisement
HowToRoblox

CreateGlobalMsg

Jan 21st, 2021
1,839
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. game.ReplicatedStorage.GlobalMessageRE.OnClientEvent:Connect(function(sender, message)
  2.    
  3.     game.StarterGui:SetCore("ChatMakeSystemMessage",
  4.         {
  5.             Text = "[GLOBAL] " .. sender .. ": " .. message,
  6.             Color = Color3.fromRGB(255, 174, 80),
  7.             Font = Enum.Font.SourceSansBold,
  8.             TextSize = 18,
  9.         })
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement