-- Define the lyrics as an array of lines local lyrics = { "I'm in the thick of it, everybody knows", "They know me where it snows, I skied in and they froze", "I don't know no nothin' 'bout no ice, I'm just cold", "Forty somethin' milli' subs or so, I've been told", "", "I'm in my prime, and this ain't even final form", "They knocked me down, but still, my feet, they find the floor", "I went from living rooms straight out to sold out tours", "Life's a fight, but trust, I'm ready for the war", "", "Woah-oh-oh", "This is how the story goes", "Woah-oh-oh", "I guess this is how the story goes", "", "I'm in the thick of it, everybody knows", "They know me where it snows, I skied in and they froze", "I don't know no nothin' 'bout no ice, I'm just cold", "Forty somethin' milli' subs or so, I've been told", "", "From the screen to the ring, to the pen, to the king", "Where's my crown? That's my bling", "Always drama when I ring", "See, I believe that if I see it in my heart", "Smash through the ceiling 'cause I'm reaching for the stars", "", "Woah-oh-oh", "This is how the story goes", "Woah-oh-oh", "I guess this is how the story goes", "", "I'm in the thick of it, everybody knows", "They know me where it snows, I skied in and they froze (Woo)", "I don't know no nothin' 'bout no ice, I'm just cold", "Forty somethin' milli' subs or so, I've been told", "", "Highway to heaven, I'm just cruisin' by my lone'", "They cast me out, left me for dead, them people cold", "My faith in God, mind in the sun, I'm 'bout to sow (Yeah)", "My life is hard, I took the wheel, I cracked the code (Yeah-yeah, woah-oh-oh)", "Ain't nobody gon' save you, man, this life will break you (Yeah, woah-oh-oh)", "In the thick of it, this is how the story goes", "", "I'm in the thick of it, everybody knows", "They know me where it snows, I skied in and they froze", "I don't know no nothin' 'bout no ice, I'm just cold", "Forty somethin' milli' subs or so, I've been told", "I'm in the thick of it, everybody knows (Everybody knows)", "They know me where it snows, I skied in and they froze (Yeah)", "I don't know no nothin' 'bout no ice, I'm just cold", "Forty somethin' milli' subs or so, I've been told (Ooh-ooh)", "", "Woah-oh-oh (Nah-nah-nah-nah, ayy, ayy)", "This is how the story goes (Nah, nah)", "Woah-oh-oh", "I guess this is how the story goes" } -- Set delay between lines (in seconds) local delayBetweenLines = 3 -- Create "made by hecker" label at the bottom of the screen local screenGui = Instance.new("ScreenGui") local textLabel = Instance.new("TextLabel") screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") textLabel.Parent = screenGui textLabel.Text = "made by hecker" textLabel.Size = UDim2.new(1, 0, 0, 30) textLabel.Position = UDim2.new(0, 0, 1, -30) textLabel.BackgroundTransparency = 1 textLabel.TextColor3 = Color3.new(1, 1, 1) -- White text color textLabel.TextScaled = true -- Function to send each line in chat local function sayLyrics() for _, line in ipairs(lyrics) do game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(line, "All") wait(delayBetweenLines) -- Wait before sending the next line end end -- Start saying lyrics sayLyrics()