local Gui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") -- GUI Setup Gui.Parent = game.CoreGui Frame.Parent = Gui Frame.Size = UDim2.new(0, 340, 0, 220) Frame.Position = UDim2.new(0.5, -160, 0.1, 0) Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 2 Frame.BorderColor3 = Color3.new(255/255,0/255,0/255) Frame.Active = true Frame.Draggable = true Title.Parent = Frame Title.Size = UDim2.new(1, 0, 0, 30) Title.Text = "Tc0liffy REBORN V1 (Private edition)" Title.TextColor3 = Color3.fromRGB(0, 255, 0) Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Title.TextScaled = true local buttons = { {"Decal", function() for _, v in pairs(game:GetDescendants()) do if v:IsA("Part") or v:IsA("MeshPart") or v:IsA("Character") then for _, face in pairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal") decal.Texture = "rbxassetid://137253456439364" decal.Face = face decal.Parent = v end end end end}, {"Skybox", function() local sky = Instance.new("Sky") sky.Parent = game.Lighting for _, face in pairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do sky["Skybox"..face] = "rbxassetid://137253456439364" end end}, {"Particle", function() for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Character:FindFirstChild("Head") then local Particle = Instance.new("ParticleEmitter") Particle.Texture = "rbxassetid://137253456439364" Particle.Parent = player.Character.Head end end end}, {"Hint", function() local Message = Instance.new("Hint", game.Workspace) Message.Text = "TEAM TC0 HAS HACKED THIS GAME | DISC INVITE: .gg/tc0Hub" end}, {"666", function() for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") then -- Change part color to black part.Color = Color3.fromRGB(0, 0, 0) -- Create red outline local outline = Instance.new("SelectionBox") outline.Adornee = part outline.LineThickness = 0.05 outline.Color3 = Color3.fromRGB(255, 0, 0) outline.Parent = part -- Add fire effect local fire = Instance.new("Fire") fire.Size = 10 fire.Heat = 10 fire.Parent = part end end end}, {"Kill all", function() for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Character:FindFirstChild("Head") then player.Character.Head:Destroy() end end end}, {"Kick all", function() for _, player in pairs(game.Players:GetPlayers()) do player:Kick("Teh Game Iz Fuked Up!!!!111") end end}, {"Theme", function() local Sound = Instance.new("Sound", game.SoundService) Sound.SoundId = "rbxassetid://1836785840" Sound.Looped = true Sound.PlaybackSpeed = 0.875 Sound.Volume = 9999999 Sound:Play() end}, {"Jumpscare", function() local Sound = Instance.new("Sound", game.SoundService) Sound.SoundId = "rbxassetid://9069609200" Sound.Volume = 9999999 Sound.PlaybackSpeed = 1 Sound:Play() local Background = Instance.new("Frame", Gui) Background.Size = UDim2.new(1, 0, 1, 0) Background.BackgroundColor3 = Color3.new(0, 0, 0) local Image = Instance.new("ImageLabel", Background) Image.Size = UDim2.new(1, 0, 1, 0) Image.Image = "rbxassetid://74392437681106" Image.BackgroundTransparency = 1 wait(9.3) Background:Destroy() end}, {"Disco", function() while true do for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") then part.Color = Color3.new(math.random(), math.random(), math.random()) end end wait(0.2) end end}, {"Grab knife v4", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/retpirato/Roblox-Scripts/refs/heads/master/Grab%20Knife%20V4.lua"))() end}, {"Uzi", function() local player = game.Players.LocalPlayer local character = player.Character repeat wait() character = player.Character until character local mouse = player:GetMouse() local tool = Instance.new("Tool",player.Backpack) tool.Name = "UZI" tool.GripForward = Vector3.new(0, 0, 0) tool.GripPos = Vector3.new(0, -0.3, 0) tool.GripRight = Vector3.new(0, 0, 0) tool.GripUp = Vector3.new(0, 0, 1) local handle = Instance.new("Part",tool) handle.Name = "Handle" handle.Size = Vector3.new(0.2, 1.7, 1.4) local mesh = Instance.new("SpecialMesh",handle) mesh.MeshId = "http://www.roblox.com/asset/?id=72012794" mesh.Scale = Vector3.new(0.6, 0.6, 0.6) mesh.TextureId = "http://www.roblox.com/asset/?id=72012761" local sound = Instance.new("Sound",handle) sound.SoundId = "http://www.roblox.com/asset/?id=27127089" sound.Volume = 1 local mouseDown = false local equipped = false function auto() while equipped and mouseDown and wait(0.1) do local current = sound:Clone() current.Parent = handle current:Play() game.Debris:AddItem(current,1) local ray = Ray.new(handle.CFrame.p,(mouse.Hit.p - handle.CFrame.p).unit*900) local hit,pos = workspace:FindPartOnRay(ray,character) local beam = Instance.new("Part", character) beam.BrickColor = BrickColor.new("Bright yellow") beam.FormFactor = "Custom" beam.Material = "Neon" beam.Transparency = 0.25 beam.Anchored = true beam.Locked = true beam.CanCollide = false local distance = (tool.Handle.CFrame.p - pos).magnitude beam.Size = Vector3.new(0.1, 0.1, distance) beam.CFrame = CFrame.new(tool.Handle.CFrame.p, pos) * CFrame.new(0, 0, -distance / 2) game:GetService("Debris"):AddItem(beam, 0.1) if hit and hit.Parent:FindFirstChild("Humanoid") then hit.Parent.Humanoid:TakeDamage(25) end end end mouse.Button1Down:connect(function() mouseDown = true auto() end) mouse.Button1Up:connect(function() mouseDown = false end) tool.Equipped:connect(function() equipped = true end) tool.Unequipped:connect(function() equipped = false end) end} } for i, buttonData in ipairs(buttons) do local Button = Instance.new("TextButton") Button.Parent = Frame Button.Size = UDim2.new(0, 100, 0, 30) Button.Position = UDim2.new(0, 10 + ((i - 1) % 3) * 110, 0, 40 + math.floor((i - 1) / 3) * 40) Button.Text = buttonData[1] Button.TextColor3 = Color3.fromRGB(0, 255, 0) Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Button.BorderSizePixel = 2 Button.BorderColor3 = Color3.new(255/255,0/255,0/255) Button.TextScaled = true Button.MouseButton1Click:Connect(buttonData[2]) end