What do you want to achieve?
I want to make that when you hit a model in a certain Velocity it will unanchor.
What is the issue?
I am trying to get so it can be more then for example 2 in Velocity
but I keep getting this error "Workspace.Street Lamp.MeshPart.Script:3: attempt to compare Vector3 < number"
The Code
script.Parent.Touched:Connect(function(hit)
print("HIT")
if hit.Velocity <= 1 then
print("Runned?")
script.Parent.Anchored = false
end
end)