-- LocalScript inside StarterGui (e.g., ScreenGui > LocalScript) local player = game.Players.LocalPlayer local uis = game:GetService("UserInputService") -- Create the ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "VIP_GUI" screenGui.Parent = player:WaitForChild("PlayerGui") screenGui.ResetOnSpawn = false -- Main Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 250, 0, 120) frame.Position = UDim2.new(0.3, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = screenGui -- UICorner local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = frame -- Title Bar local titleBar = Instance.new("Frame") titleBar.Size = UDim2.new(1, 0, 0, 30) titleBar.BackgroundColor3 = Color3.fromRGB(35, 35, 35) titleBar.BorderSizePixel = 0 titleBar.Parent = frame local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, -30, 1, 0) titleLabel.Position = UDim2.new(0, 10, 0, 0) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "VIP Menu" titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.Font = Enum.Font.GothamBold titleLabel.TextSize = 16 titleLabel.TextXAlignment = Enum.TextXAlignment.Left titleLabel.Parent = titleBar -- Close Button local closeBtn = Instance.new("TextButton") closeBtn.Size = UDim2.new(0, 30, 1, 0) closeBtn.Position = UDim2.new(1, -30, 0, 0) closeBtn.BackgroundTransparency = 1 closeBtn.Text = "X" closeBtn.TextColor3 = Color3.fromRGB(255, 80, 80) closeBtn.Font = Enum.Font.GothamBold closeBtn.TextSize = 18 closeBtn.Parent = titleBar -- Main Button local vipButton = Instance.new("TextButton") vipButton.Size = UDim2.new(0, 200, 0, 50) vipButton.Position = UDim2.new(0.5, -100, 0.5, -20) vipButton.BackgroundColor3 = Color3.fromRGB(50, 150, 255) vipButton.Text = "Activate VIP" vipButton.TextColor3 = Color3.fromRGB(255, 255, 255) vipButton.Font = Enum.Font.GothamBold vipButton.TextSize = 18 vipButton.Parent = frame local vipCorner = Instance.new("UICorner") vipCorner.CornerRadius = UDim.new(0, 8) vipCorner.Parent = vipButton -- Button Action with Auto Reset vipButton.MouseButton1Click:Connect(function() local rs = game:GetService("ReplicatedStorage") local target = rs:FindFirstChild("ffrostflame_bridgenet2@1.0.0") if target then target:Destroy() vipButton.Text = "VIP Activated!" vipButton.BackgroundColor3 = Color3.fromRGB(80, 200, 120) else vipButton.Text = "Already Removed" vipButton.BackgroundColor3 = Color3.fromRGB(200, 80, 80) end -- Reset back to default after 2 seconds task.delay(2, function() vipButton.Text = "Activate VIP" vipButton.BackgroundColor3 = Color3.fromRGB(50, 150, 255) end) end) -- Close Button Action closeBtn.MouseButton1Click:Connect(function() frame.Visible = false end) -- RightShift Toggle for GUI uis.InputBegan:Connect(function(input, gpe) if not gpe and input.KeyCode == Enum.KeyCode.RightShift then frame.Visible = not frame.Visible end end)