Roblox Hulk Command Script

This script adds the /hulk chat command for owners to activate Hulk powers in Roblox Studio.

-- Define the owner's username
local ownerUsername = "YourOwnerUsername"  -- Replace with your owner's username

-- Function to grant Hulk powers
local function grantHulkPowers(player)
    player.Character.Humanoid.WalkSpeed = 150  -- Increased speed
    player.Character.Humanoid.JumpPower = 100  -- Increased jump power

    -- Change the player's appearance to Hulk
    player.Character.Humanoid:LoadCharacter()  -- Reload the character to apply changes
    -- You can also add additional effects or features here
end

-- Listen for chat messages
game.Players.PlayerAdded:Connect(function(player)
    player.Chatted:Connect(function(message)
        -- Check if the message is "/hulk" and the player is the owner
        if message == "/hulk" and player.Name == ownerUsername then
            grantHulkPowers(player)
            player:Kick("You now have Hulk powers!")
        end
    end)
end)