--// Services local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local CollectionService = game:GetService("CollectionService") local StarterGui = game:GetService("StarterGui") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local G2L = {} -- ===== ScreenGui ===== local playerGui = player:WaitForChild("PlayerGui") local existingGui = playerGui:FindFirstChild("Tylerc00lGui") if existingGui then existingGui:Destroy() end G2L["ScreenGui_1"] = Instance.new("ScreenGui") G2L["ScreenGui_1"].Name = "Tylerc00lGui" G2L["ScreenGui_1"].ZIndexBehavior = Enum.ZIndexBehavior.Sibling G2L["ScreenGui_1"].Parent = playerGui CollectionService:AddTag(G2L["ScreenGui_1"], "main") -- ===== Main Frame ===== local Frame = Instance.new("Frame", G2L["ScreenGui_1"]) Frame.BorderSizePixel = 2 Frame.BorderColor3 = Color3.fromRGB(170, 0, 0) Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Frame.Size = UDim2.new(0, 350, 0, 360) Frame.Position = UDim2.new(0, 160, 0, 20) Frame.Active = true Frame.Draggable = true Frame.Selectable = true G2L["Frame_2"] = Frame -- ===== Title ===== local Title = Instance.new("TextBox", Frame) Title.Text = "Onkidd x ProxyLord Reborn revival 0.3" Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.BorderSizePixel = 2 Title.BorderColor3 = Color3.fromRGB(170, 0, 0) Title.Size = UDim2.new(0, 320, 0, 36) Title.Position = UDim2.new(0, 2, 0, 0) Title.TextScaled = true Title.TextWrapped = true Title.ClearTextOnFocus = false Title.TextEditable = false Title.Active = false G2L["TextBox_3"] = Title -- ===== Divider ===== local Divider = Instance.new("TextBox", Frame) Divider.Size = UDim2.new(0, 3, 0, 220) Divider.Position = UDim2.new(0, 170, 0, 60) Divider.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Divider.BorderSizePixel = 2 Divider.BorderColor3 = Color3.fromRGB(170, 0, 0) Divider.Text = "" G2L["TextBox_5"] = Divider -- ===== Button Style ===== local function styleButton(btn) btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) btn.BorderColor3 = Color3.fromRGB(170, 0, 0) btn.BorderSizePixel = 2 btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextScaled = true btn.AutoButtonColor = true end -- ===== Side Button ===== local SideBtn = Instance.new("TextButton", Frame) SideBtn.Text = ">" SideBtn.Size = UDim2.new(0, 28, 0, 320) SideBtn.Position = UDim2.new(0, 320, 0, 0) styleButton(SideBtn) G2L["TextButton_4"] = SideBtn -- ===== Bottom Button ===== local BottomBtn = Instance.new("TextButton", Frame) BottomBtn.Size = UDim2.new(0, 340, 0, 20) BottomBtn.Position = UDim2.new(0, 2, 0, 340) BottomBtn.Text = "Close" styleButton(BottomBtn) G2L["TextButton_a"] = BottomBtn -- ===== Left Buttons ===== local buttonPairs = { { {Name = "TextButton_6", DisplayName = "Set Music"}, {Name = "TextButton_7", DisplayName = "Set Decal"} }, { {Name = "TextButton_8", DisplayName = "Set Skybox"}, {Name = "TextButton_9", DisplayName = "Set Particles"} }, { {Name = "TextButton_10", DisplayName = "Disco Avatar"}, {Name = "TextButton_11", DisplayName = "GOD MODE"} }, { {Name = "TextButton_12", DisplayName = "Hint Message"}, {Name = "TextButton_13", DisplayName = "Rotation"} }, { {Name = "TextButton_14", DisplayName = "Disco Lights"}, {Name = "TextButton_15", DisplayName = "Fog"} }, { {Name = "TextButton_16", DisplayName = "9x1x1x2 Theme"}, {Name = "TextButton_18", DisplayName = "PROXYLORD Theme"} }, { {Name = "TextButton_17", DisplayName = "R6 Old"} } } local startY = 66 local rowSpacing = 26 local buttonWidth = 80 local buttonHeight = 24 local gapBetween = 4 local leftPadding = 6 for i, pair in ipairs(buttonPairs) do local yPos = startY + (i - 1) * rowSpacing for j, info in ipairs(pair) do local btn = Instance.new("TextButton", Frame) btn.Size = UDim2.new(0, buttonWidth, 0, buttonHeight) local xPos = leftPadding + (j - 1) * (buttonWidth + gapBetween) btn.Position = UDim2.new(0, xPos, 0, yPos) btn.Text = info.DisplayName styleButton(btn) G2L[info.Name] = btn end end -- ===== Right Buttons (smaller width) ===== local rightButtons = { { Name = "TextButton_R1", DisplayName = "c00lclan" }, { Name = "TextButton_R2", DisplayName = "ck lua" }, { Name = "TextButton_R3", DisplayName = "Extra3" }, { Name = "TextButton_R4", DisplayName = "Extra4" }, } local rightButtonWidth = 70 local rightButtonHeight = 24 local rightStartX = 180 local rightStartY = 66 local rightGapX = 75 local rightGapY = 26 for i, info in ipairs(rightButtons) do local row = math.ceil(i / 2) local col = ((i - 1) % 2) local btn = Instance.new("TextButton", Frame) btn.Size = UDim2.new(0, rightButtonWidth, 0, rightButtonHeight) btn.Position = UDim2.new(0, rightStartX + col * rightGapX, 0, rightStartY + (row - 1) * rightGapY) btn.Text = info.DisplayName styleButton(btn) G2L[info.Name] = btn end -- ===== Stop All Music ===== local StopMusicBtn = Instance.new("TextButton", Frame) StopMusicBtn.Size = UDim2.new(0, 80, 0, 24) StopMusicBtn.Position = UDim2.new(0, 260, 0, 2) StopMusicBtn.Text = "STOP MUSIC" styleButton(StopMusicBtn) G2L["TextButton_StopAllMusic"] = StopMusicBtn local persistentSound StopMusicBtn.MouseButton1Click:Connect(function() for _, s in ipairs(workspace:GetDescendants()) do if s:IsA("Sound") then s:Stop() end end persistentSound = nil end) -- ===== GUI Visibility Toggle ===== local guiVisible = true BottomBtn.MouseButton1Click:Connect(function() guiVisible = not guiVisible for _, obj in pairs(G2L) do if obj ~= BottomBtn and obj:IsA("GuiObject") then obj.Visible = guiVisible end end end) -- ===== Set Music ===== G2L["TextButton_6"].MouseButton1Click:Connect(function() if persistentSound and persistentSound.IsPlaying then return end local sound = Instance.new("Sound", workspace) sound.Name = "CustomSound" sound.SoundId = "rbxassetid://71956674693421" sound.Volume = 10 sound.PlaybackSpeed = 1.65 sound.Looped = true sound:Play() persistentSound = sound local eq = Instance.new("EqualizerSoundEffect", sound) eq.HighGain, eq.MidGain, eq.LowGain = 10, 8, 6 end) -- ===== PROXYLORD Theme ===== G2L["TextButton_18"].MouseButton1Click:Connect(function() if persistentSound and persistentSound.IsPlaying then persistentSound:Stop() end local sound = Instance.new("Sound", workspace) sound.Name = "ProxyLordTheme" sound.SoundId = "rbxassetid://79507677596805" sound.Volume = 10 sound.PlaybackSpeed = 1.10 sound.Looped = true sound:Play() persistentSound = sound local eq = Instance.new("EqualizerSoundEffect", sound) eq.HighGain, eq.MidGain, eq.LowGain = 12, 10, 8 end) -- ===== Set Decal ===== G2L["TextButton_7"].MouseButton1Click:Connect(function() local id = "rbxassetid://158118263" for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") then for _, d in ipairs(part:GetChildren()) do if d:IsA("Decal") and d.Name == "CustomDecal" then d:Destroy() end end for _, face in ipairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal") decal.Name, decal.Texture, decal.Face, decal.Parent = "CustomDecal", id, face, part end end end end) -- ===== Set Skybox ===== G2L["TextButton_8"].MouseButton1Click:Connect(function() local old = Lighting:FindFirstChild("CustomSky") if old then old:Destroy() end local sky = Instance.new("Sky", Lighting) sky.Name = "CustomSky" local id = "rbxassetid://158118263" sky.SkyboxBk, sky.SkyboxDn, sky.SkyboxFt = id, id, id sky.SkyboxLf, sky.SkyboxRt, sky.SkyboxUp = id, id, id end) -- ===== Set Particles ===== G2L["TextButton_9"].MouseButton1Click:Connect(function() local id = "rbxassetid://158118263" for _, p in ipairs(Players:GetPlayers()) do if p.Character then for _, part in ipairs(p.Character:GetDescendants()) do if part:IsA("BasePart") then local old = part:FindFirstChild("CustomParticle") if old then old:Destroy() end local pe = Instance.new("ParticleEmitter", part) pe.Name, pe.Texture, pe.Rate = "CustomParticle", id, 50 pe.Lifetime, pe.Speed = NumberRange.new(2), NumberRange.new(5) end end end end end) -- ===== Disco Avatar ===== G2L["TextButton_10"].MouseButton1Click:Connect(function() for _, plr in ipairs(Players:GetPlayers()) do if plr.Character then for _, part in ipairs(plr.Character:GetDescendants()) do if part:IsA("BasePart") then task.spawn(function() while part and part.Parent do part.Color = Color3.fromHSV(math.random(),1,1) task.wait(0.1) end end) end end end end end) -- ===== GOD MODE ===== G2L["TextButton_11"].MouseButton1Click:Connect(function() local char = player.Character or player.CharacterAdded:Wait() if not char then return end local hum = char:FindFirstChildOfClass("Humanoid") if hum then hum.WalkSpeed = 50 end for _, limb in ipairs({"LeftUpperArm","RightUpperArm","LeftLowerArm","RightLowerArm"}) do local part = char:FindFirstChild(limb) if part then part.Size, part.BrickColor = Vector3.new(1,2,1), BrickColor.new("Bright blue") end end local head = char:FindFirstChild("Head") if head then local g = head:FindFirstChild("GodNameGui") if g then g:Destroy() end local gui = Instance.new("BillboardGui", head) gui.Name, gui.Adornee, gui.Size = "GodNameGui", head, UDim2.new(0,400,0,100) gui.StudsOffset, gui.AlwaysOnTop = Vector3.new(0,3,0), false local label = Instance.new("TextLabel", gui) label.Size, label.BackgroundTransparency = UDim2.new(1,0,1,0), 1 label.Text = player.DisplayName or player.Name label.TextScaled, label.Font = true, Enum.Font.GothamBold label.TextStrokeTransparency, label.TextColor3 = 0, Color3.fromRGB(170,0,0) end end) -- ===== Hint Message ===== G2L["TextButton_12"].MouseButton1Click:Connect(function() StarterGui:SetCore("SendNotification",{Title="HINT",Text="TEAM Onkidd and ProxyLord JOIN TODAY",Duration=5}) end) -- ===== Rotation ===== G2L["TextButton_13"].MouseButton1Click:Connect(function() local parts = {} for _, p in ipairs(workspace:GetDescendants()) do if p:IsA("BasePart") and p.Anchored then table.insert(parts,{Part=p,OriginalCFrame=p.CFrame}) end end local t,d=0,2 local conn conn=RunService.RenderStepped:Connect(function(dt) t+=dt local a=math.clamp(t/d,0,1) local rot=CFrame.Angles(math.rad(360*a),0,0) for _,x in ipairs(parts) do if x.Part and x.Part.Parent then x.Part.CFrame=rot*x.OriginalCFrame end end if a>=1 then conn:Disconnect() end end) end) -- ===== Disco Lights ===== G2L["TextButton_14"].MouseButton1Click:Connect(function() for _, p in ipairs(workspace:GetDescendants()) do if p:IsA("BasePart") then task.spawn(function() while p and p.Parent do p.Color=Color3.fromHSV(math.random(),1,1) task.wait(0.1) end end) end end end) -- ===== Fog ===== G2L["TextButton_15"].MouseButton1Click:Connect(function() Lighting.FogStart=0 Lighting.FogEnd=200 Lighting.FogColor=Color3.fromRGB(128,128,128) end) -- ===== 9x1x1x2 Theme ===== G2L["TextButton_16"].MouseButton1Click:Connect(function() if persistentSound and persistentSound.IsPlaying then persistentSound:Stop() end local s=Instance.new("Sound",workspace) s.SoundId="rbxassetid://1848354536" s.Volume=10 s.PlaybackSpeed=0.75 s.Looped=true s:Play() persistentSound=s end) -- ===== R6 Old ===== G2L["TextButton_17"].MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Old-animation-Noob-fino-23081"))() end) -- ===== c00lclan Button ===== G2L["TextButton_R1"].MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-c00lclan-v1-52917"))() end) -- ===== ck lua Button ===== G2L["TextButton_R2"].MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-c00lkidd-2025-53663"))() end) return G2L["ScreenGui_1"]