How to do skillchecks

How would i do skill checks from dead by daylight or from flee the facility?

image

rotates and detect that red line is on black bar

2 Likes

see this if it solves your question.

1 Like

The first script given here is confirmed not to work on rotations if you plan to use the rotation.
Instead, you can use “>=” and “<=”. Measure the rotation of the endpoint of the target, for example, the endpoints of the target are 13 and -13.

if MovingFrame.Rotation >= (TargetFrame.Rotation - 13) and MovingFrame.Rotation <= (TargetFrame.Rotation + 13) then
print("HIt")
else
print("No")
end

Hope this helps, if you have questions, I can try to answer them.