I’m looking to remove a part when the part has run out of speed. I’ve looked up answers, but I’m unsure of how to complete it.
I’ve used this solution, however it gives me 6.5072912548203e-05
I’m looking to remove a part when the part has run out of speed. I’ve looked up answers, but I’m unsure of how to complete it.
I’ve used this solution, however it gives me 6.5072912548203e-05
Thats a roblox’s core engine issue, the humanoid root part’s velocity can never be absolute 0 due to rounding issue and other stuff
(also use if math.floor(speed) >= 0 then
my bad lol)
That’s very interesting!
Seems to be working much better than my post solution! Thank you for the help, I consider this a 2 in 1 solution!