Skip to main content
Feedback

Giant Dancing Simulator Script -

-- Command to toggle giant size game.Commands.CommandHandler:RegisterCommand("giant", function(player) local isGiant = playerData[player.UserId].isGiant if not isGiant then makeGiant(player) playerData[player.UserId].isGiant = true else player.Character.Humanoid.Scale = 1 playerData[player.UserId].isGiant = false end end)

-- Player data local playerData = {}

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