1 | if char:FindFirstChild( "ForceField" ) then |
how do i make this negative? for example:
1 | if char:FindFirstChild( "ForceField" ) = = false then |
Just type "not" after if
1 | if not char:FindFirstChild( "ForceField" ) then |
If the forcefield is nil then
1 | if char:FindFirstChild( "ForceField" ) = = nil then |