of     1   

TheBeastSword
#208408107Saturday, January 28, 2017 4:30 PM GMT

If I have a part that I want to detect if it is nil or not, how would I do it? -Thanks
chimmihc
#208409403Saturday, January 28, 2017 4:53 PM GMT

Part = nil print(Part == nil) --> true Part = 5 print(Part == nil) --> false
LuluPls
#208409647Saturday, January 28, 2017 4:57 PM GMT

if game.Workspace:FindFirstChild("PartName") then -- what happens if it exists else --what happens if it doesn't end

    of     1