Well this kinda sucks. But I can understand why its probably not possible to compare a NumberSequence’s number, since it is probably super complex or something.
local ps = NumberSequence.new(5)
local sequence = NumberSequence.new(0,3)
if ps.Keypoints[#ps.Keypoints].Value >= sequence.Keypoints[#sequence.Keypoints].Value then
print("Yes!")
end
You could try doing some math on the keypoints to find a value but otherwise, you can’t directly compare them.