Zum Hauptinhalt springen

Giant Dancing Simulator Script (VALIDATED • 2024)

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

-- Services local Players = game:GetService("Players") local RunService = game:GetService("RunService") Giant Dancing Simulator Script

-- Dance animations local danceAnimations = { dance1 = "Dance1Animation", dance2 = "Dance2Animation", dance3 = "Dance3Animation", } -- Make player giant when they join makeGiant(player)

-- 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) dance2 = "Dance2Animation"

-- 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)

The animations can be created using the Roblox Animation Editor.