I want to make character to swim without water, and i tried to do like that:
1 | Humanoid:SetStateEnabled(Enum.HumanoidStateType.Swimming, true ) |
But it wouldn't work, even with a loop.
How exactly can i make character/humanoid swim?
I do not know if this works as it was on the wiki site for roblox. But you can always test this
In a local script put:
1 | while wait() do |
2 | game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Swimming) |
3 | end |