local sg=Instance.new("ScreenGui",game.Players.LocalPlayer:WaitForChild("PlayerGui")) sg.Name="C00LGUI" local f=Instance.new("Frame",sg) f.Size=UDim2.new(0,370,0,420) f.Position=UDim2.new(0.5,-185,0.5,-210) f.BackgroundColor3=Color3.fromRGB(50,50,50) f.Active=true f.Draggable=true Instance.new("UICorner",f).CornerRadius=UDim.new(0,10) local top=Instance.new("TextLabel",f) top.Size=UDim2.new(1,0,0,30) top.Text="C00LGUI" top.TextSize=28 top.TextColor3=Color3.fromRGB(255,255,0) top.BackgroundTransparency=1 local bot=Instance.new("TextLabel",f) bot.Size=UDim2.new(1,0,0,30) bot.Position=UDim2.new(0,0,1,-30) bot.Text="By c00lkidd fan" bot.TextSize=22 bot.TextColor3=Color3.fromRGB(0,255,0) bot.BackgroundTransparency=1 local btns={ {"Get Infinity Yield",function()loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()end}, {"Change Music ID",function()local s=Instance.new("Sound",workspace) s.SoundId="rbxassetid://1837635122" s.Volume=10 s.Looped=true s:Play()end}, {"666 = Fire All Parts",function()for _,v in pairs(workspace:GetDescendants())do if v:IsA("BasePart") and not v:FindFirstChildOfClass("Fire") then local fire=Instance.new("Fire",v) fire.Size=10 fire.Heat=25 end end end}, {"Become All Red",function()local c=game.Players.LocalPlayer.Character if c then for _,v in pairs(c:GetDescendants())do if v:IsA("BasePart")then v.BrickColor=BrickColor.new("Bright red")v.Material=Enum.Material.Neon end end end end}, {"Chat Swearing GUI",function()local t=Instance.new("TextLabel",sg) t.Size=UDim2.new(0,300,0,100) t.Position=UDim2.new(0.5,-150,0.2,0) t.Text="Chat Swearing GUI Loaded (visual only)" t.TextSize=18 t.BackgroundColor3=Color3.fromRGB(255,0,0) t.TextColor3=Color3.new(1,1,1) wait(5) t:Destroy()end}, {"Hint Message",function()local h=Instance.new("Hint",workspace) h.Text="Call Number: 0727 347 930" end} } for i,v in ipairs(btns)do local b=Instance.new("TextButton",f) b.Size=UDim2.new(1,-20,0,35) b.Position=UDim2.new(0,10,0,40+(i-1)*45) b.Text=v[1] b.TextSize=22 b.BackgroundColor3=Color3.fromRGB(80,80,80) b.TextColor3=Color3.new(1,1,1) Instance.new("UICorner",b).CornerRadius=UDim.new(0,6) b.MouseButton1Click:Connect(v[2]) end print("C00lgui Loaded!")