This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Modo Volar | |
| local player = game.Players.LocalPlayer | |
| local character = player.Character or player.CharacterAdded:Wait() | |
| local humanoidRootPart = character:WaitForChild("HumanoidRootPart") | |
| local humanoid = character:WaitForChild("Humanoid") | |
| -- Cambiamos la gravedad para que flote | |
| humanoid.PlatformStand = true | |
| humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown, false) | |
| -- Bucle para moverse | |
| while wait() do |