I want to make character to swim without water, and i tried to do like that:
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:
while wait() do game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Swimming) end