RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a roblox lua script that makes the roblox character tall"
-- server script game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") humanoid.BodyHeightScale.Value = 2 end) end)