Advertisement
Dfgjfj

System message

Feb 9th, 2025
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2.  
  3. local TextChatService = game:GetService("TextChatService")
  4. local Time = 5 --// will send tips every 5 seconds
  5. local tips = {
  6. "Make sure to share/like the game",
  7. "dw we not going to hack you",
  8. "don't swear anyone, it not cool",
  9. " allvideo is kinda sexy"
  10. }
  11.  
  12. while true do
  13. TextChatService.TextChannels.RBXGeneral:DisplaySystemMessage(tips[math.random(1,#tips)])
  14. task.wait(Time)
  15. end
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement