--================================================-- -- FPS Booster GUI (Box Style, English, Draggable) --================================================-- local player = game.Players.LocalPlayer -- Buat ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "FPSBoosterUpdate" ScreenGui.Parent = player:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false -- Buat Frame utama (kotak) local Frame = Instance.new("Frame") Frame.Parent = ScreenGui Frame.Size = UDim2.new(0, 250, 0, 140) Frame.Position = UDim2.new(0.5, -125, 0.6, 0) Frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Frame.Active = true Frame.Draggable = true -- biar bisa digeser local corner = Instance.new("UICorner", Frame) corner.CornerRadius = UDim.new(0, 10) -- Judul local Title = Instance.new("TextLabel") Title.Parent = Frame Title.Size = UDim2.new(1, 0, 0, 30) Title.Text = "FPS Booster Update 🇮🇩" Title.BackgroundTransparency = 1 Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.GothamBold Title.TextSize = 16 -- Tombol Boost local BoostBtn = Instance.new("TextButton") BoostBtn.Parent = Frame BoostBtn.Size = UDim2.new(0.5, -15, 0.5, -10) BoostBtn.Position = UDim2.new(0, 10, 0, 40) BoostBtn.Text = "BOOST FPS" BoostBtn.BackgroundColor3 = Color3.fromRGB(50, 150, 50) BoostBtn.TextColor3 = Color3.fromRGB(255, 255, 255) BoostBtn.Font = Enum.Font.GothamBold BoostBtn.TextSize = 18 local boostCorner = Instance.new("UICorner", BoostBtn) boostCorner.CornerRadius = UDim.new(0, 8) -- Tombol Close local CloseBtn = Instance.new("TextButton") CloseBtn.Parent = Frame CloseBtn.Size = UDim2.new(0.4, -10, 0.5, -10) CloseBtn.Position = UDim2.new(0.55, 0, 0, 40) CloseBtn.Text = "CLOSE" CloseBtn.BackgroundColor3 = Color3.fromRGB(200, 50, 50) CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.Font = Enum.Font.GothamBold CloseBtn.TextSize = 18 local closeCorner = Instance.new("UICorner", CloseBtn) closeCorner.CornerRadius = UDim.new(0, 8) --================================================-- -- Fungsi FPS Boost --================================================-- local function FpsBoost() local targets = { workspace.Map:FindFirstChild("Walls"), workspace.Map:FindFirstChild("Trees"), workspace.Map:FindFirstChild("Summer") } -- Hapus isi Summer dulu local summer = workspace.Map:FindFirstChild("Summer") if summer then for _, child in pairs(summer:GetChildren()) do child:Destroy() end end -- Hapus target utama for _, obj in pairs(targets) do if obj then obj:Destroy() end end print("FPS Booster activated! Heavy objects destroyed.") end -- Klik tombol Boost → jalankan FpsBoost BoostBtn.MouseButton1Click:Connect(FpsBoost) -- Klik tombol Close → hapus GUI CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end)