Any way to check if the entity position is frozen?

As the title says.
Does anyone know if there is a way/native to check if the entity position is frozen?
You can use the FreezeEntityPosition(entity, toggle) native to freeze/unfreeze the entity, but I’ve yet to find any way to check if it is frozen.

I can’t find a native that checks for that, but i know that in lua/js you can use IsEntityPositionFrozen(entityId)
it returns true/false.
Hope it helps! :+1:

1 Like

Thanks a lot! Really wired that that isn’t documented anywhere… Well well, thanks a lot! I do appreciate it!

is that on client side or server side if i want to check?

is that on client side or server side if i want to check? ?

image

Works on both.

I try to Do it but he give me error for the native

I do like this

Local isfroeez = the native he

If isfroeez then
Print(“yes“)
Else
Print(“no“)
end

???

You could post the actual code you know?
What is the error? How are you calling the native?