ex
1 | if game.Players.LocalPlayer.Character.HumanoidRootPart.Position - Part.Position.magnitude = = 15 then print ( "hi" ) end |
basically that but if the mag is 15 or lower
The <
operator "less than" let's you do that. You can additionally combine it with =
, giving you <=
"less than or equal to".
1 | local plr = game.Players.LocalPlayer |
2 | local hrp = plr.Character.HumanoidRootPart |
3 |
4 | if (hrp.Position - Part.Position).magnitude < = 15 then |
5 | print ( "hi" ) |
6 | end |
Make it on ()
Example:
1 | local Part = workspace.Part_ok |
2 |
3 | if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - Part.Position).magnitude = = 15 then |
4 | print ( "Hi!" ) |
5 | end |