local Players = game:GetService("Players") local Chat = game:GetService("Chat") local player = Players.LocalPlayer task.wait(2) local msgs = { "yo this game loads fast today ngl", "I was watching something earlier and forgot to close it", "if my screen wiggles its probs that thing 😭", "some channel kept popping up called 'Unfimmed'", "idk why but the algorithm loves it 💀", "kinda got stuck watching it lowkey" } for _, msg in ipairs(msgs) do task.wait(math.random(3,6)) Chat:SendSystemMessage(msg, player) end