-- Random Actions Hub Script local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "RandomActionsHub" screenGui.Parent = player.PlayerGui -- Main Frame local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 400, 0, 400) mainFrame.Position = UDim2.new(0.5, -200, 0.5, -200) mainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) mainFrame.BorderSizePixel = 5 mainFrame.BorderColor3 = Color3.fromRGB(255, 255, 255) mainFrame.Visible = false mainFrame.Parent = screenGui -- Open/Close Button local openButton = Instance.new("TextButton") openButton.Size = UDim2.new(0, 200, 0, 50) openButton.Position = UDim2.new(0.5, -100, 0.9, 0) openButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) openButton.Text = "Open Random Hub" openButton.Parent = screenGui openButton.MouseButton1Click:Connect(function() mainFrame.Visible = not mainFrame.Visible end) -- Jump Boost Button local jumpButton = Instance.new("TextButton") jumpButton.Size = UDim2.new(0, 200, 0, 50) jumpButton.Position = UDim2.new(0.5, -100, 0, 50) jumpButton.BackgroundColor3 = Color3.fromRGB(0, 0, 255) jumpButton.Text = "Jump Boost" jumpButton.Parent = mainFrame jumpButton.MouseButton1Click:Connect(function() player.Character.Humanoid.JumpHeight = 100 end) -- Invisible Button local invisibleButton = Instance.new("TextButton") invisibleButton.Size = UDim2.new(0, 200, 0, 50) invisibleButton.Position = UDim2.new(0.5, -100, 0, 120) invisibleButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) invisibleButton.Text = "Invisible" invisibleButton.Parent = mainFrame invisibleButton.MouseButton1Click:Connect(function() player.Character.HumanoidRootPart.Transparency = 1 player.Character.HumanoidRootPart.CanCollide = false end) -- Speed Boost Button local speedButton = Instance.new("TextButton") speedButton.Size = UDim2.new(0, 200, 0, 50) speedButton.Position = UDim2.new(0.5, -100, 0, 190) speedButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0) speedButton.Text = "Speed Boost" speedButton.Parent = mainFrame speedButton.MouseButton1Click:Connect(function() player.Character.Humanoid.WalkSpeed = 100 end) -- Fire Button local fireButton = Instance.new("TextButton") fireButton.Size = UDim2.new(0, 200, 0, 50) fireButton.Position = UDim2.new(0.5, -100, 0, 260) fireButton.BackgroundColor3 = Color3.fromRGB(255, 165, 0) fireButton.Text = "Fire" fireButton.Parent = mainFrame fireButton.MouseButton1Click:Connect(function() local fire = Instance.new("Fire") fire.Parent = player.Character.HumanoidRootPart fire.Size = 50 fire.Heat = 10 fire.Enabled = true end)