local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "ReampKİDD" screenGui.Parent = player:WaitForChild("PlayerGui") -- Sürüklenebilir Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0.3, 0, 0.4, 0) frame.Position = UDim2.new(0.35, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.BorderSizePixel = 2 frame.Draggable = true frame.Active = true frame.Parent = screenGui -- NUKER Butonu local nukerButton = Instance.new("TextButton") nukerButton.Size = UDim2.new(0.8, 0, 0.15, 0) nukerButton.Position = UDim2.new(0.1, 0, 0.1, 0) nukerButton.BackgroundColor3 = Color3.fromRGB(200, 0, 0) nukerButton.Text = "NUKER" nukerButton.Parent = frame nukerButton.MouseButton1Click:Connect(function() game.Lighting.Ambient = Color3.fromRGB(255, 0, 0) -- Kırmızı ışık game.Lighting.Brightness = 0 -- Karanlık yap game.Lighting.FogEnd = 50 -- Sis ekle -- X-Ray efekti for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.ForceField v.Color = Color3.fromRGB(0, 255, 0) -- Yeşil end end -- Oyuncular uçup dönsün for _, v in pairs(game.Players:GetPlayers()) do if v.Character then local hum = v.Character:FindFirstChildOfClass("Humanoid") if hum then hum.Sit = true v.Character.HumanoidRootPart.Anchored = false v.Character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0) -- Havaya kaldır end end end -- İlk Hint game.StarterGui:SetCore("SendNotification", { Title = "ReampKİDD"; Text = "ReampKİDD THE GAME NUKER"; Duration = 6; }) wait(6) -- İkinci Hint ve Ses game.StarterGui:SetCore("SendNotification", { Title = "ReampKİDD"; Text = "MUAHHAHAHAAHAHHA"; Duration = 6; }) local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://9056709911" sound.Volume = 388383 sound.PlaybackSpeed = 0.50 sound:Play() -- Kıyafetleri kaldır ve yanma efekti ekle for _, v in pairs(game.Players:GetPlayers()) do if v.Character then for _, obj in pairs(v.Character:GetChildren()) do if obj:IsA("Clothing") or obj:IsA("Shirt") or obj:IsA("Pants") then obj:Destroy() end end -- Siyah yap ve kırmızı yanma ekle v.Character.HumanoidRootPart.Color = Color3.fromRGB(0, 0, 0) local fire = Instance.new("Fire", v.Character.HumanoidRootPart) fire.Size = 10 fire.Color = Color3.fromRGB(255, 0, 0) end end -- Harita dönsün while true do for _, v in pairs(workspace:GetChildren()) do if v:IsA("Model") then v:SetPrimaryPartCFrame(v.PrimaryPart.CFrame * CFrame.Angles(0, math.rad(10), 0)) end end wait(0.1) end end) -- PRISON LIFE Butonu local prisonButton = Instance.new("TextButton") prisonButton.Size = UDim2.new(0.8, 0, 0.15, 0) prisonButton.Position = UDim2.new(0.1, 0, 0.3, 0) prisonButton.BackgroundColor3 = Color3.fromRGB(0, 0, 200) prisonButton.Text = "PRISON LIFE" prisonButton.Parent = frame prisonButton.MouseButton1Click:Connect(function() game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("ReampKİDD İS BACK ⚠️⚠️⚠️", "All") local char = player.Character if char then char.Humanoid.WalkSpeed = 40 -- Hız artır -- Kırmızı yap ve mavi alev ekle char.HumanoidRootPart.Color = Color3.fromRGB(255, 0, 0) local fire = Instance.new("Fire", char.Head) fire.Size = 5 fire.Color = Color3.fromRGB(0, 0, 255) -- Animasyon oynat local animation = Instance.new("Animation") animation.AnimationId = "rbxassetid://484200742" local animator = char.Humanoid:FindFirstChildOfClass("Animator") if animator then local animTrack = animator:LoadAnimation(animation) animTrack:Play() end end end) -- HINT (8) Butonu local hintButton = Instance.new("TextButton") hintButton.Size = UDim2.new(0.8, 0, 0.15, 0) hintButton.Position = UDim2.new(0.1, 0, 0.5, 0) hintButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0) hintButton.Text = "HINT (8)" hintButton.Parent = frame hintButton.MouseButton1Click:Connect(function() game.StarterGui:SetCore("SendNotification", { Title = "ReampKİDD"; Text = "ReampKİDD ⬅️ HACKER!"; Duration = 6; }) local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://15689451063" sound.Volume = 10 sound:Play() wait(3) game.StarterGui:SetCore("SendNotification", { Title = "ReampKİDD"; Text = "NUKER BAŞLIYOR!"; Duration = 6; }) -- Glitch efekti for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.Neon v.Color = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255)) end end while true do workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame * CFrame.Angles(0, math.rad(5), 0) wait(0.1) end end)