Advertisement
HowToRoblox

SystemMessageCreator

Jul 19th, 2020
4,483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. local messages =
  2. {
  3.     "LIKE the game to receive in game PERKS!",
  4.     "FAVOURITE the game to gain a 500 CASH BONUS!",
  5.     "Press E to INTERACT with ITEMS!",
  6. }
  7.  
  8. local timePerMessage = 10
  9.  
  10.  
  11. while wait(timePerMessage) do
  12.  
  13.     game.StarterGui:SetCore("ChatMakeSystemMessage",
  14.     {
  15.         Text = "[TIP] " .. messages[math.random(1, #messages)],
  16.         Color = Color3.fromRGB(5, 255, 63),
  17.         Font = Enum.Font.SourceSansBold,
  18.         TextSize = 18,
  19.     })
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement