loadstring([[ -- 🔊 SOUND ON EXECUTE (SAFE) local SoundService = game:GetService("SoundService") local execSound = Instance.new("Sound") execSound.SoundId = "rbxassetid://9118823101" -- you can change to any allowed sound execSound.Volume = 2 execSound.Looped = false execSound.Parent = SoundService execSound:Play() -- ================= ORIGINAL SCRIPT ================= local TCS=game:GetService("TextChatService") local TweenService=game:GetService("TweenService") local RunService=game:GetService("RunService") local ch=TCS.TextChannels.RBXGeneral local p=game.Players.LocalPlayer local run=false local msgs={ "CHAL ABB CHXD🤣","BHXSDK😃","TMKX MAI BISCUIT😑","BHAAG MAT🥱🥱","TMKX PHATI 🤙🏻", "LULLI CHUS💀","BAAP SE FYT?😈","TMKX MAI PEN🖊️✍🏻","TMKX MAI LIBBU SNAKE🐍", "TERI BKC MAI ACHAAR🤤","MOOT PEE😆","SORRY BOLKE BHAG😂", "TERI BKC MAI CHARGER🔌","TMKX MAI PS5🎮","TMKX CHUDI ABB😂", "TMKX MAI STICKER🍡","TERI MA LULLI LOVER🤍","TMKX MAI HAMMER 🔨", "TMKX MAI BOTTLE👈🏻","MXL CHAL LULLA LE🤡","TMKX MAI TV📺", "TMKX MAI IRON","TMKX MAI NUCLEUS","TMKX MAI MODI LND", "SPAM NAHI HO RAHA?🤣","CHAL PAPA KA LND LE🤣","TMKX MAI RC CAR 🚗", "TMBKX PHATI KYA? ()","TMKX MAI CHAIN","CHUP RNDIKE🤣", "SPAM KRNA SEEKH😭","TMKX MAI BLANKET","TMKX MAI SHIRT", "CHAL CHUDTE REH🤣" } local spamDelay = 1.5 local msgIndex = 1 -- ScreenGui local g=Instance.new("ScreenGui",p.PlayerGui) g.ResetOnSpawn=false -- Main Frame local f=Instance.new("Frame",g) f.Size=UDim2.new(0,280,0,200) f.Position=UDim2.new(.5,-140,.5,-100) f.Active=true f.Draggable=true Instance.new("UICorner",f).CornerRadius=UDim.new(0,16) -- Gradient Background local grad=Instance.new("UIGradient",f) grad.Color=ColorSequence.new{ ColorSequenceKeypoint.new(0,Color3.fromRGB(255,80,80)), ColorSequenceKeypoint.new(0.5,Color3.fromRGB(160,100,255)), ColorSequenceKeypoint.new(1,Color3.fromRGB(80,220,255)) } local stroke=Instance.new("UIStroke",f) stroke.Thickness=3 stroke.Transparency=0.2 -- Title local title=Instance.new("TextLabel",f) title.Size=UDim2.new(1,0,0,42) title.BackgroundTransparency=1 title.Text="LIBBU SIR" title.Font=Enum.Font.GothamBold title.TextSize=24 title.TextColor3=Color3.new(1,1,1) local titleStroke=Instance.new("UIStroke",title) titleStroke.Thickness=2 titleStroke.Transparency=0.25 -- Name Box local t=Instance.new("TextBox",f) t.Size=UDim2.new(1,-30,0,40) t.Position=UDim2.new(0,15,0,55) t.PlaceholderText="Enter H8ER Name" t.Font=Enum.Font.Gotham t.TextSize=16 t.TextColor3=Color3.new(1,1,1) t.BackgroundColor3=Color3.fromRGB(25,25,25) Instance.new("UICorner",t).CornerRadius=UDim.new(0,12) -- Speed Buttons local speedFrame=Instance.new("Frame",f) speedFrame.Size=UDim2.new(1,-30,0,28) speedFrame.Position=UDim2.new(0,15,0,105) speedFrame.BackgroundTransparency=1 local function speedBtn(txt,delay,pos) local b=Instance.new("TextButton",speedFrame) b.Size=UDim2.new(0.3,0,1,0) b.Position=pos b.Text=txt b.Font=Enum.Font.GothamBold b.TextSize=14 b.TextColor3=Color3.new(1,1,1) b.BackgroundColor3=Color3.fromRGB(35,35,35) Instance.new("UICorner",b).CornerRadius=UDim.new(0,8) b.MouseButton1Click:Connect(function() spamDelay=delay end) end speedBtn("1s",1,UDim2.new(0,0,0,0)) speedBtn("2s",2,UDim2.new(0.35,0,0,0)) speedBtn("3s",3,UDim2.new(0.7,0,0,0)) -- Info local info=Instance.new("TextLabel",f) info.Size=UDim2.new(1,0,0,24) info.Position=UDim2.new(0,0,0,145) info.BackgroundTransparency=1 info.Text="Tap button: ON/OFF | Double tap: Hide" info.Font=Enum.Font.Gotham info.TextSize=13 info.TextColor3=Color3.fromRGB(220,220,220) -- Floating ON/OFF Button local b=Instance.new("TextButton",g) b.Size=UDim2.new(0,65,0,65) b.Position=UDim2.new(1,-90,.5,-32) b.Text="OFF" b.Font=Enum.Font.GothamBold b.TextScaled=true b.TextColor3=Color3.new(1,1,1) b.Active=true b.Draggable=true Instance.new("UICorner",b).CornerRadius=UDim.new(1,0) local bGrad=Instance.new("UIGradient",b) bGrad.Color=ColorSequence.new{ ColorSequenceKeypoint.new(0,Color3.fromRGB(255,70,70)), ColorSequenceKeypoint.new(1,Color3.fromRGB(255,160,90)) } local bStroke=Instance.new("UIStroke",b) bStroke.Thickness=3 bStroke.Transparency=0.2 -- Hide/Show Button local hb=Instance.new("TextButton",g) hb.Size=UDim2.new(0,70,0,32) hb.Position=UDim2.new(0,15,1,-50) hb.Text="HIDE" hb.Font=Enum.Font.GothamBold hb.TextSize=14 hb.TextColor3=Color3.new(1,1,1) hb.BackgroundColor3=Color3.fromRGB(30,30,30) hb.Active=true hb.Draggable=true Instance.new("UICorner",hb).CornerRadius=UDim.new(0,10) local hbGrad=Instance.new("UIGradient",hb) hbGrad.Color=ColorSequence.new{ ColorSequenceKeypoint.new(0,Color3.fromRGB(255,70,70)), ColorSequenceKeypoint.new(0.5,Color3.fromRGB(160,100,255)), ColorSequenceKeypoint.new(1,Color3.fromRGB(80,220,255)) } RunService.RenderStepped:Connect(function(dt) grad.Rotation+=dt*35 bGrad.Rotation-=dt*50 hbGrad.Rotation+=dt*60 local c=Color3.fromHSV((tick()%5)/5,1,1) stroke.Color=c titleStroke.Color=c bStroke.Color=c end) hb.MouseButton1Click:Connect(function() f.Visible=not f.Visible hb.Text=f.Visible and "HIDE" or "SHOW" end) -- Logic (RESET ON RESTART) local lastTap=0 b.MouseButton1Click:Connect(function() if tick()-lastTap<0.35 then f.Visible=not f.Visible else run=not run b.Text=run and "ON" or "OFF" if run then msgIndex=1 bGrad.Color=ColorSequence.new(Color3.fromRGB(80,255,150),Color3.fromRGB(60,200,120)) task.spawn(function() while run do if not msgs[msgIndex] then msgIndex=1 end ch:SendAsync( "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$SCRIPT βΨ LIββU PΔPΔΩ$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$(" ..t.Text..") "..msgs[msgIndex] ) msgIndex+=1 task.wait(spamDelay) end end) else bGrad.Color=ColorSequence.new(Color3.fromRGB(255,70,70),Color3.fromRGB(255,160,90)) end end lastTap=tick() end) ]])()