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