-- LocalScript içinde çalıştırılacak local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local character = player.Character or player.CharacterAdded:Wait() local replicatedStorage = game:GetService("ReplicatedStorage") local runService = game:GetService("RunService") local tweenService = game:GetService("TweenService") -- GUI oluşturma local gui = Instance.new("ScreenGui") gui.Name = "Localqw6MegaGui" gui.Parent = playerGui -- GUI Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0.4, 0, 0.5, 0) frame.Position = UDim2.new(0.3, 0, 0.25, 0) frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.BackgroundTransparency = 0.2 frame.Active = true frame.Draggable = true -- Sürüklenebilirlik frame.Parent = gui -- Giriş Animasyonu frame.Position = UDim2.new(0.5, 0, 1, 0) local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out) local tween = tweenService:Create(frame, tweenInfo, {Position = UDim2.new(0.3, 0, 0.25, 0)}) tween:Play() -- Başlık local title = Instance.new("TextLabel") title.Text = "Localqw6 Mega GUI" title.Size = UDim2.new(1, 0, 0.1, 0) title.BackgroundColor3 = Color3.fromRGB(0, 0, 0) title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.FredokaOne title.TextScaled = true title.Parent = frame -- Butonlar oluşturuluyor local buttonNames = {"Tool Paint", "Troll V2", "Silici Ehsya", "FE Animation", "Localqw6 Mega"} local buttons = {} for i, name in ipairs(buttonNames) do local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0.1, 0) button.Position = UDim2.new(0.1, 0, 0.15 + (i - 1) * 0.15, 0) button.Text = name button.BackgroundColor3 = Color3.fromRGB(0, 255, 0) button.Font = Enum.Font.SourceSansBold button.TextScaled = true button.Parent = frame buttons[name] = button end -- Tool Paint işlevi buttons["Tool Paint"].MouseButton1Click:Connect(function() for _, tool in ipairs(player.Backpack:GetChildren()) do if tool:IsA("Tool") then tool.Parent = character end end -- Kalp oluştur for i = 1, 10 do local part = Instance.new("Part") part.Shape = Enum.PartType.Ball part.Size = Vector3.new(1, 1, 1) part.Position = character.HumanoidRootPart.Position + Vector3.new(math.random(-5, 5), 5, math.random(-5, 5)) part.Anchored = true part.BrickColor = BrickColor.new("Bright red") part.Parent = workspace game:GetService("Debris"):AddItem(part, 5) end end) -- Troll V2 işlevi buttons["Troll V2"].MouseButton1Click:Connect(function() for _, target in ipairs(game.Players:GetPlayers()) do if target ~= player then character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0) replicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("İnek!", "All") wait(2) end end end) -- Silici Ehsya işlevi buttons["Silici Ehsya"].MouseButton1Click:Connect(function() local tool = Instance.new("Tool") tool.Name = "Silici Omer" tool.RequiresHandle = false -- Şarkı ekle local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://8680587619" sound.Volume = 7685868 sound.Pitch = 0.5 sound.Looped = false sound.Parent = tool tool.Equipped:Connect(function() sound:Play() wait(4) sound:Stop() end) tool.Activated:Connect(function() local target = player:GetMouse().Target if target then target:Destroy() end end) tool.Parent = player.Backpack end) -- FE Animation menüsü buttons["FE Animation"].MouseButton1Click:Connect(function() local menuFrame = Instance.new("Frame") menuFrame.Size = UDim2.new(0.6, 0, 0.4, 0) menuFrame.Position = UDim2.new(0.2, 0, 0.3, 0) menuFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) menuFrame.Parent = frame local animButtons = {"Animation 1", "Animation 2", "Animation 3"} for i, anim in ipairs(animButtons) do local animButton = Instance.new("TextButton") animButton.Size = UDim2.new(0.8, 0, 0.2, 0) animButton.Position = UDim2.new(0.1, 0, 0.2 + (i - 1) * 0.25, 0) animButton.Text = anim animButton.Parent = menuFrame animButton.MouseButton1Click:Connect(function() local animation = Instance.new("Animation") if anim == "Animation 1" then animation.AnimationId = "rbxassetid://507770239" -- Örnek animasyon elseif anim == "Animation 2" then animation.AnimationId = "rbxassetid://507771019" elseif anim == "Animation 3" then animation.AnimationId = "rbxassetid://507776043" end local animator = character.Humanoid:FindFirstChildOfClass("Animator") animator:LoadAnimation(animation):Play() end) end end) -- Localqw6 Mega işlevi buttons["Localqw6 Mega"].MouseButton1Click:Connect(function() local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(5, 0, 2, 0) billboard.StudsOffset = Vector3.new(0, 5, 0) billboard.Adornee = character.HumanoidRootPart billboard.Parent = workspace local textLabel = Instance.new("TextLabel") textLabel.Text = "LOCALQW6 MEGA BOMB SERVER EZ" textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.TextScaled = true textLabel.BackgroundTransparency = 1 textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) textLabel.Font = Enum.Font.FredokaOne textLabel.Parent = billboard for _, target in ipairs(game.Players:GetPlayers()) do target.TeamColor = BrickColor.random() end player.DisplayName = "LOCALQW6" for _, target in ipairs(game.Players:GetPlayers()) do target.DisplayName = "LOCALQW6" end local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://7375687262" sound.Volume = 7788888 sound.Parent = workspace sound:Play() end)