local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 320, 0, 1000) frame.Position = UDim2.new(0.5, -160, 0.5, -500) frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.Draggable = true frame.Active = true frame.Parent = gui local function createButton(name, position, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(0, 300, 0, 25) button.Position = UDim2.new(0, 10, 0, position) button.BackgroundColor3 = Color3.fromRGB(100, 100, 250) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Text = name button.Parent = frame button.MouseButton1Click:Connect(callback) end local skyboxes = { "rbxassetid://93610908239235", "rbxassetid://122356091817894", "rbxassetid://88903356810194", "rbxassetid://109251560" } -- **40 Buton Listesi** createButton("Skybox Değiştir", 10, function() game.Lighting.Sky.SkyboxBk = skyboxes[math.random(1, #skyboxes)] end) createButton("Decal Spam", 40, function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Part") then local decal = Instance.new("Decal", v) decal.Texture = "rbxassetid://133923025127249" end end end) createButton("Scream Ses", 70, function() local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://7672204851" sound.Volume = 8 sound:Play() end) createButton("Ekranı Sallama", 100, function() local cam = workspace.CurrentCamera for i = 1, 10 do cam.CFrame = cam.CFrame * CFrame.Angles(0, math.rad(5), 0) wait(0.1) end end) createButton("Taco Yağmuru", 130, function() for i = 1, 20 do local taco = Instance.new("Part", workspace) taco.Size = Vector3.new(2, 1, 2) taco.Position = Vector3.new(math.random(-50, 50), 50, math.random(-50, 50)) taco.BrickColor = BrickColor.new("Bright yellow") wait(0.2) end end) createButton("Kill All", 160, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character and v.Character:FindFirstChild("Humanoid") then v.Character.Humanoid.Health = 0 end end end) createButton("Fire All", 190, function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Part") then local fire = Instance.new("Fire", v) fire.Color = Color3.new(math.random(), 0, 0) end end end) createButton("Patlama Yap", 220, function() local explosion = Instance.new("Explosion", workspace) explosion.Position = player.Character.HumanoidRootPart.Position explosion.BlastRadius = 20 end) createButton("Sabitleri Sil", 250, function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Anchored = false end end end) createButton("Giant Block", 280, function() local block = Instance.new("Part", workspace) block.Size = Vector3.new(20, 20, 20) block.Position = player.Character.HumanoidRootPart.Position + Vector3.new(0, 10, 0) block.BrickColor = BrickColor.Random() end) createButton("Chat Spam", 310, function() while true do game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("JOND -ReampKİDD🌮. Join today", "All") wait(2) end end) createButton("Jumpscare", 340, function() local jumpscare = Instance.new("BillboardGui", player.PlayerGui) jumpscare.Size = UDim2.new(1, 0, 1, 0) jumpscare.Adornee = player.Character.Head local img = Instance.new("ImageLabel", jumpscare) img.Size = UDim2.new(1, 0, 1, 0) img.Image = "rbxassetid://122356091817894" wait(2) jumpscare:Destroy() end) createButton("Speed 10+", 370, function() player.Character.Humanoid.WalkSpeed = player.Character.Humanoid.WalkSpeed + 10 end) createButton("Gece Modu", 400, function() game.Lighting.TimeOfDay = "00:00:00" end) createButton("Glitch Efekti", 430, function() while true do for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Part") then v.Material = Enum.Material.Neon v.Color = Color3.fromHSV(math.random(), 1, 1) end end wait(0.1) end end) createButton("Oyuncuları Dondur", 460, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character then v.Character.Humanoid.WalkSpeed = 0 end end end) createButton("Neon Parlama", 490, function() for _, v in pairs(player.Character:GetChildren()) do if v:IsA("BasePart") then v.Material = Enum.Material.Neon v.Color = Color3.new(1, 0, 0) end end end) createButton("Müzik Çal", 520, function() local music = Instance.new("Sound", workspace) music.SoundId = "rbxassetid://15689443076" music.Volume = 3 music.Looped = true music:Play() end) createButton("Görünmez Ol", 550, function() for _, v in pairs(player.Character:GetChildren()) do if v:IsA("BasePart") then v.Transparency = 1 end end end)createButton("Zıplama Gücü +50", 580, function() player.Character.Humanoid.JumpPower = player.Character.Humanoid.JumpPower + 50 end) createButton("Tüm Oyuncuları Uçur", 610, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character and v.Character:FindFirstChild("HumanoidRootPart") then v.Character.HumanoidRootPart.Anchored = false v.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Physics) v.Character.HumanoidRootPart.Velocity = Vector3.new(0, 100, 0) end end end) createButton("Oyuncuları Küçült", 640, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character then for _, part in pairs(v.Character:GetChildren()) do if part:IsA("BasePart") then part.Size = part.Size * 0.5 end end end end end) createButton("Büyük Kafa Modu", 670, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character and v.Character:FindFirstChild("Head") then v.Character.Head.Size = Vector3.new(5, 5, 5) end end end) createButton("Herkesi Görünmez Yap", 700, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character then for _, part in pairs(v.Character:GetChildren()) do if part:IsA("BasePart") then part.Transparency = 1 end end end end end) createButton("Herkesi Görünür Yap", 730, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character then for _, part in pairs(v.Character:GetChildren()) do if part:IsA("BasePart") then part.Transparency = 0 end end end end end) createButton("FOV 120 Yap", 760, function() workspace.CurrentCamera.FieldOfView = 120 end) createButton("FOV 70 Yap (Normal)", 790, function() workspace.CurrentCamera.FieldOfView = 70 end) createButton("Oyuncuları Gerçekten Uçur", 820, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character and v.Character:FindFirstChild("Humanoid") then local bv = Instance.new("BodyVelocity", v.Character.HumanoidRootPart) bv.Velocity = Vector3.new(0, 50, 0) bv.MaxForce = Vector3.new(math.huge, math.huge, math.huge) end end end) createButton("Sonsuz Zıplama Aç", 850, function() local UserInputService = game:GetService("UserInputService") local function onJumpRequest() if player.Character and player.Character:FindFirstChildOfClass("Humanoid") then player.Character:FindFirstChildOfClass("Humanoid"):ChangeState(Enum.HumanoidStateType.Jumping) end end UserInputService.JumpRequest:Connect(onJumpRequest) end) createButton("Haritayı 180° Döndür", 880, function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Orientation = v.Orientation + Vector3.new(180, 0, 0) end end end) createButton("Haritayı Karart", 910, function() game.Lighting.Brightness = 0 game.Lighting.Ambient = Color3.new(0, 0, 0) end) createButton("Haritayı Aydınlat", 940, function() game.Lighting.Brightness = 2 game.Lighting.Ambient = Color3.new(1, 1, 1) end) createButton("Renk Değiştirme", 970, function() while true do for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Part") then v.BrickColor = BrickColor.Random() end end wait(0.5) end end) createButton("Haritaya Su Ekleyin", 1000, function() local water = Instance.new("Part", workspace) water.Size = Vector3.new(200, 1, 200) water.Position = Vector3.new(0, 5, 0) water.BrickColor = BrickColor.new("Bright blue") water.Material = Enum.Material.Water end) createButton("Hızlı Zıplama Efekti", 1030, function() local ts = game:GetService("TweenService") for _, v in pairs(player.Character:GetChildren()) do if v:IsA("BasePart") then local tween = ts:Create(v, TweenInfo.new(0.5, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out), {Position = v.Position + Vector3.new(0, 5, 0)}) tween:Play() end end end) createButton("Harita Altına Düş", 1060, function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.Position = Vector3.new(0, -500, 0) end end) createButton("Müzik Durdur", 1090, function() for _, v in pairs(workspace:GetChildren()) do if v:IsA("Sound") then v:Destroy() end end end) createButton("Tüm Scriptleri Sil", 1120, function() for _, v in pairs(game:GetDescendants()) do if v:IsA("Script") or v:IsA("LocalScript") then v:Destroy() end end end)