Giant Dancing Simulator Script -

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

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

-- Services local Players = game:GetService("Players") local RunService = game:GetService("RunService") -- Event listener for player added Players