Giant Dancing Simulator Script Link

-- Load dance animations local animator = character:WaitForChild("Humanoid"):WaitForChild("Animator") for danceMove, animationName in pairs(danceAnimations) do local animation = Instance.new("Animation") animation.Name = animationName animation.AnimationId = "rbxassetid://" .. tostring(RunService:LoadAnimation(animationName).AnimationId) animator:LoadAnimation(animation) end end) end)

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

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

-- Make player giant when they join makeGiant(player) end) Giant Dancing Simulator Script