local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "RandomFrame" gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 100) frame.Position = UDim2.new(0.5, -100, 0.5, -50) frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45) frame.Parent = gui local phrases = { "Hello world!", "I'm just chilling ๐Ÿ˜Ž", "Random stuff happening...", "Whatโ€™s going on?", "Who touched my cheese?", "Bro this game wild fr", "Biggie Cheese", "Skill issue ๐Ÿ’€", "bro thinks heโ€™s him ๐Ÿ˜ญ", "I can smell colors", "average ohio moment", "Certified hood classic ๐ŸŽถ", "Cheese detected ๐Ÿง€", "they werenโ€™t lying when they said run", "bro got folded like an omelet", "not even close baby ๐Ÿ˜ค", "im not lagging you are", "ratio + skill diff", "literally me fr", "insert goofy ahh sound effect", "my pc just screamed help ๐Ÿ’€", "bro just got jumpscared by air", "average day in bloxburg", "I blame ping", "Big cheese energy ๐Ÿง€๐Ÿ”ฅ } while true do task.wait(math.random(1, 3)) local msg = phrases[math.random(1, #phrases)] game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") end