local player = game.Players.LocalPlayer local Lighting = game:GetService("Lighting") local gui = Instance.new("ScreenGui", player.PlayerGui) gui.Name = "WizardsGui leaked by team BlackEye950 & localcoder0" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 300, 0, 480) frame.Position = UDim2.new(0.5, -150, 0.5, -240) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BackgroundTransparency = 0.3 frame.Active = true frame.Draggable = true local bgImage = Instance.new("ImageLabel", frame) bgImage.Size = UDim2.new(1, 0, 1, 0) bgImage.Position = UDim2.new(0, 0, 0, 0) bgImage.BackgroundTransparency = 1 bgImage.Image = "rbxassetid://95434387189406" bgImage.ZIndex = 0 local gradient = Instance.new("UIGradient", frame) gradient.Color = ColorSequence.new{ ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(50, 50, 50)) } gradient.Rotation = 90 local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 20) frame.BorderSizePixel = 3 frame.BorderColor3 = Color3.fromRGB(0, 255, 0) local img = Instance.new("ImageLabel", frame) img.Size = UDim2.new(1, 0, 0, 100) img.Image = "rbxassetid://135974338575030" img.BackgroundTransparency = 1 img.ZIndex = 1 -- ScrollFrame container for buttons local buttonsContainer = Instance.new("ScrollingFrame", frame) buttonsContainer.Size = UDim2.new(1, 0, 1, -110) buttonsContainer.Position = UDim2.new(0, 0, 0, 110) buttonsContainer.BackgroundTransparency = 1 buttonsContainer.BorderSizePixel = 0 buttonsContainer.CanvasSize = UDim2.new(0, 0, 0, 0) buttonsContainer.ScrollBarThickness = 6 local uiListLayout = Instance.new("UIListLayout", buttonsContainer) uiListLayout.Padding = UDim.new(0, 5) uiListLayout.SortOrder = Enum.SortOrder.LayoutOrder local function createButton(text, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -10, 0, 30) btn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSansBold btn.TextScaled = true btn.ZIndex = 2 btn.Text = text btn.ClipsDescendants = true btn.MouseButton1Click:Connect(callback) return btn end -- Add buttons to scrolling frame, position managed by UIListLayout automatically -- GUI KAPAT butonu local closeButton = createButton("GUI Kapat leaked by team BlackEye950 & localcoder0", function() gui.Enabled = false openButton.Visible = true end) closeButton.Parent = buttonsContainer -- Message label (hidden by default) local messageLabel = Instance.new("TextLabel", frame) messageLabel.Size = UDim2.new(0.9, 0, 0, 40) messageLabel.Position = UDim2.new(0.05, 0, 0, 10) messageLabel.BackgroundTransparency = 0.5 messageLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) messageLabel.TextColor3 = Color3.fromRGB(255, 255, 255) messageLabel.TextScaled = true messageLabel.Font = Enum.Font.SourceSansBold messageLabel.Text = "🙏 disc invite. YFCXZZeBtG 🙏 leaked by team BlackEye950 & localcoder0 " messageLabel.Visible = false messageLabel.ZIndex = 5 messageLabel.ClipsDescendants = true local msgCorner = Instance.new("UICorner", messageLabel) msgCorner.CornerRadius = UDim.new(0, 10) -- Message toggle button local messageButton = createButton("Message Göster/Gizle", function() messageLabel.Visible = not messageLabel.Visible end) messageButton.Parent = buttonsContainer -- Açma butonu local openButton = Instance.new("TextButton", player.PlayerGui) openButton.Size = UDim2.new(0, 80, 0, 30) openButton.Position = UDim2.new(0, 10, 0, 10) openButton.Text = "AÇ leaked by team BlackEye950 & localcoder0" openButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) openButton.TextColor3 = Color3.fromRGB(255, 255, 255) openButton.Font = Enum.Font.SourceSansBold openButton.TextScaled = true openButton.Visible = false openButton.MouseButton1Click:Connect(function() gui.Enabled = true openButton.Visible = false end) -- DECAL SPAM local decalSpamBtn = createButton("Decal Spam leaked by team BlackEye950 & localcoder0", function() local decalId = "rbxassetid://97252264629077" for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") then for _, d in pairs(part:GetChildren()) do if d:IsA("Decal") then d:Destroy() end end local faces = { Enum.NormalId.Front, Enum.NormalId.Back, Enum.NormalId.Top, Enum.NormalId.Bottom, Enum.NormalId.Left, Enum.NormalId.Right } for _, face in pairs(faces) do local decal = Instance.new("Decal") decal.Texture = decalId decal.Face = face decal.Parent = part end end end end) decalSpamBtn.Parent = buttonsContainer -- SKYBOX local skyboxBtn = createButton("Skybox leaked by team BlackEye950 & localcoder0", function() local l = Lighting local s = Instance.new("Sky", l) s.SkyboxBk = "rbxassetid://127994052224894" s.SkyboxDn = "rbxassetid://127994052224894" s.SkyboxFt = "rbxassetid://127994052224894" s.SkyboxLf = "rbxassetid://127994052224894" s.SkyboxRt = "rbxassetid://127994052224894" s.SkyboxUp = "rbxassetid://127994052224894" end) skyboxBtn.Parent = buttonsContainer -- PARTICLE ALL local particleBtn = createButton("Particle All leaked by team BlackEye950 & localcoder0", function() for _, p in pairs(game.Players:GetPlayers()) do if p.Character and p.Character:FindFirstChild("Head") then local particle = Instance.new("ParticleEmitter", p.Character.Head) particle.Texture = "rbxassetid://123747455476151" end end end) particleBtn.Parent = buttonsContainer -- FACE ALL local faceAllBtn = createButton("Face All leaked by team BlackEye950 & localcoder0", function() for _, p in pairs(game.Players:GetPlayers()) do if p.Character and p.Character:FindFirstChild("Head") then for _, d in pairs(p.Character.Head:GetChildren()) do if d:IsA("Decal") then d:Destroy() end end local face = Instance.new("Decal", p.Character.Head) face.Texture = "rbxassetid://125826653647827" end end end) faceAllBtn.Parent = buttonsContainer -- JUMPSCARE ALL local jumpscareBtn = createButton("Jumpscare All leaked by team BlackEye950 & localcoder0", function() for _, p in pairs(game.Players:GetPlayers()) do local jsGui = Instance.new("ScreenGui", p.PlayerGui) local img = Instance.new("ImageLabel", jsGui) img.Size = UDim2.new(1, 0, 1, 0) img.Image = "rbxassetid://74999378367863" img.BackgroundTransparency = 1 local s = Instance.new("Sound", jsGui) s.SoundId = "rbxassetid://103215672097028" s.Volume = 10 s:Play() task.wait(4) jsGui:Destroy() end end) jumpscareBtn.Parent = buttonsContainer -- HEAD TAGS (chat all değiştirilmiş hali) local headTagsBtn = createButton("Head Tags leaked by team BlackEye950 & localcoder0", function() for _, p in pairs(game.Players:GetPlayers()) do if p.Character and p.Character:FindFirstChild("Head") then local head = p.Character.Head if head:FindFirstChild("HackedBillboard") then head.HackedBillboard:Destroy() end local billboard = Instance.new("BillboardGui") billboard.Name = "HackedBillboard leaked by team BlackEye950 & localcoder0" billboard.Adornee = head billboard.Size = UDim2.new(0, 200, 0, 50) billboard.StudsOffset = Vector3.new(0, 2, 0) billboard.AlwaysOnTop = true billboard.Parent = head local textLabel = Instance.new("TextLabel", billboard) textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = "HACKED GAME FLAWES TEAM leaked by team BlackEye950 & localcoder0" textLabel.TextColor3 = Color3.new(1, 0, 0) textLabel.TextStrokeColor3 = Color3.new(0, 0, 0) textLabel.TextStrokeTransparency = 0 textLabel.TextScaled = true textLabel.Font = Enum.Font.SourceSansBold end end end) headTagsBtn.Parent = buttonsContainer -- Disco efekt local discoActive = false local originalAmbient = Lighting.Ambient local originalColorShift = Lighting.ColorShift_Top local discoBtn = createButton("Disco leaked by team BlackEye950 & localcoder0", function() if discoActive then discoActive = false Lighting.Ambient = originalAmbient Lighting.ColorShift_Top = originalColorShift else discoActive = true coroutine.wrap(function() local colors = { Color3.fromRGB(255, 0, 0), Color3.fromRGB(0, 255, 0), Color3.fromRGB(0, 0, 255), Color3.fromRGB(255, 255, 0), Color3.fromRGB(0, 255, 255), Color3.fromRGB(255, 0, 255), } local i = 1 while discoActive do Lighting.Ambient = colors[i] Lighting.ColorShift_Top = colors[i] i = i + 1 if i > #colors then i = 1 end wait(0.3) end end)() end end) discoBtn.Parent = buttonsContainer -- Kick All (bunu dahil dahil atar) local kickAllBtn = createButton("Kick All leaked by team BlackEye950 & localcoder0", function() for _, p in pairs(game.Players:GetPlayers()) do p:Kick("HACKED FLAWLES TEAM script leaked by team BlackEye950 & localcoder0") end end) kickAllBtn.Parent = buttonsContainer