The command handler script can be created using the Roblox Command Handler.

-- Function to make player giant local function makeGiant(player) local character = player.Character if character then character.Humanoid.Scale = config.giantSize end end

-- Event listener for player added Players.PlayerAdded:Connect(function(player) -- Initialize player data playerData[player.UserId] = { isGiant = false, danceMove = "", }

-- Event listener for player character added Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) -- Make player giant when their character spawns makeGiant(player)

-- Configuration local config = { -- Dance moves danceMoves = { "dance1", "dance2", "dance3", }, -- Giant size giantSize = 10, }

-- Dance animations local danceAnimations = { dance1 = "Dance1Animation", dance2 = "Dance2Animation", dance3 = "Dance3Animation", }

-- Make player giant when they join makeGiant(player) end)