Hi, so after observing the conversations on this topic or your issue, there are several or more steps to determine whether you are moving or in different humanoid states. You could use the magnitude of the Velocity in order to determine if you are moving or in motion in any direction.
For example:
local plr : (Player) = (game:GetService("Players").LocalPlayer)
local char : (Model) = (plr.Character or plr.CharacterAdded:Wait())
local hum = (char:WaitForChild("Humanoid"))
while (task.wait()) do
if (hum.PrimaryPart.AssemblyLinearVelocity.Magnitude) > 0 then
print("moving or in motion!", hum.PrimaryPart.AssemblyLinearVelocity.Magnitude)
else
print("not moving!")
end
end;
But, from my perspective, your code should have worked properly. The thing that might be causing those is loop management or conditional statements (Those might be the things that are causing the lags).
I have no doubt that using MoveDirection or determining the velocity will work it could’ve been loop management or conditional statements
This won’t work because they could be in the air as well, thus triggering this as well.
Furthermore, the problem is specifically that the loop lags when they move for prolonged periods of time.
You put the RunService loop that I provided before instead of the while loop.
My instincts tell me that it’s not because of this but because of something else. You may have a memory leak due to unneeded connections.
Shoot. I have no idea how I’m going to resolve that…
I’m not the best at scripting, as a matter of fact, my friend told me he will revise all of my scripts because he’s concerned about memory leaks. Yikes…
If you want to prevent Memory Leaks, you can do the following
Avoid having loops inside loops, e.g.
while true do
game:GetService("RunService").RenderStepped:Connect(function()
print("bla bla bla")
end)
end
You don’t need these two loops or connections inside each other. When you see it, you want to either remove one of them or to move the connection that’s inside to the outside so that it runs alongside the other connection
Disconnect connections that only need to work once in a given scenario like so:
local clickConnection
clickConnection = button.MouseButton1Click:Connect(function()
print("yes")
clickConnection:Disconnect()
end)
This’ll save on memory since if you have the connection running permanently, it’ll be listening forever.
There are other things you can do too, like checking out the Micro-Profiler to accurately identify where lag is coming from. Hope this helped!
It might be time to move this to a new topic. This thread is getting quite long + we could use some help from other people. Perhaps it could be the excessive prints? I doubt it, though.
We’ve already “solved” it, and this wouldn’t work either because they could be in the air, and not touching the ground. Now, it’s more a matter of reducing lag.