local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "ReampKİDDv2" screenGui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 400, 0, 500) frame.Position = UDim2.new(0.5, -200, 0.5, -250) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.Active = true frame.Draggable = true frame.Parent = screenGui local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 10) uiCorner.Parent = frame local function createButton(name, position, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0, 40) button.Position = UDim2.new(0.1, 0, position, 0) button.BackgroundColor3 = Color3.fromRGB(100, 0, 200) button.Text = name button.TextSize = 14 button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Parent = frame local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 10) uiCorner.Parent = button button.MouseButton1Click:Connect(callback) return button end -- **Butonlar ve İşlevleri** createButton("Skybox", 0.02, function() game.Lighting.Sky.SkyboxBk = "rbxassetid://93610908239235" game.Lighting.Sky.SkyboxDn = "rbxassetid://93610908239235" game.Lighting.Sky.SkyboxFt = "rbxassetid://93610908239235" game.Lighting.Sky.SkyboxLf = "rbxassetid://93610908239235" game.Lighting.Sky.SkyboxRt = "rbxassetid://93610908239235" game.Lighting.Sky.SkyboxUp = "rbxassetid://93610908239235" end) createButton("DecalSpam", 0.1, function() for _, obj in ipairs(workspace:GetDescendants()) do if obj:IsA("Part") or obj:IsA("MeshPart") then local decal = Instance.new("Decal", obj) decal.Texture = "rbxassetid://133923025127249" end end end) createButton("Scream", 0.18, function() local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://7672204851" sound.Volume = 8383838 sound:Play() end) createButton("Ekran Salama", 0.26, function() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "WARNING!", Text = "Ekran bozuluyor!", Duration = 5 }) for _, player in pairs(game.Players:GetPlayers()) do local cam = player:FindFirstChild("Camera") if cam then cam.FieldOfView = math.random(10, 120) end end end) createButton("Taco 🌮", 0.34, function() for i = 1, 50 do local taco = Instance.new("Part", workspace) taco.Size = Vector3.new(2, 2, 2) taco.Position = Vector3.new(math.random(-50, 50), 50, math.random(-50, 50)) taco.BrickColor = BrickColor.new("Bright yellow") end end) createButton("Kill All", 0.42, function() for _, player in pairs(game.Players:GetPlayers()) do if player.Character then player.Character:BreakJoints() end end end) createButton("Fire All", 0.50, function() for _, obj in ipairs(workspace:GetDescendants()) do if obj:IsA("Part") or obj:IsA("MeshPart") then local fire = Instance.new("Fire", obj) fire.Color = Color3.fromRGB(math.random(0, 255), 0, math.random(0, 255)) end end end) createButton("Hint", 0.58, function() game.StarterGui:SetCore("SendNotification", {Title = "Hint"; Text = "ReampKİDD AND JOND !!"; Duration = 6}) wait(6) game.StarterGui:SetCore("SendNotification", {Title = "Hint"; Text = "JOND -OMER"; Duration = 6}) wait(6) game.StarterGui:SetCore("SendNotification", {Title = "Hint"; Text = "ReampKİDD IS BACK"; Duration = 6}) end) createButton("Sabit Silme", 0.66, function() for _, obj in ipairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.Anchored = false end end end) createButton("Disco", 0.74, function() while true do game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random()) wait(0.5) end end) createButton("Giant Block", 0.82, function() local block = Instance.new("Part", workspace) block.Size = Vector3.new(10, 10, 10) block.Position = player.Character.HumanoidRootPart.Position + Vector3.new(0, 5, 0) block.BrickColor = BrickColor.Random() block.Anchored = false while block do block.BrickColor = BrickColor.Random() wait(0.5) end end) createButton("Chat Spam", 0.90, function() while true do game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("JOND -ReampKİDD🌮. Join today", "All") wait(1) end end) createButton("Speed 10+", 0.98, function() local humanoid = player.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.WalkSpeed = humanoid.WalkSpeed + 10 end end) createButton("Night", 1.06, function() game.Lighting.TimeOfDay = "00:00:00" game.Lighting.Brightness = 0 end) createButton("Skybox Epic Face", 1.14, function() game.Lighting.Sky.SkyboxBk = "rbxassetid://109251560" game.Lighting.Sky.SkyboxDn = "rbxassetid://109251560" game.Lighting.Sky.SkyboxFt = "rbxassetid://109251560" game.Lighting.Sky.SkyboxLf = "rbxassetid://109251560" game.Lighting.Sky.SkyboxRt = "rbxassetid://109251560" game.Lighting.Sky.SkyboxUp = "rbxassetid://109251560" end) createButton("Player Flying", 1.22, function() for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Character:FindFirstChildOfClass("Humanoid") then player.Character.HumanoidRootPart.Velocity = Vector3.new(0, 100, 0) end end end)