#how do I make a script where it detects if something is inside of a players folder

3 messages · Page 1 of 1 (latest)

clever patio
#

use findfirstchild

#

if it doesn't find it it will return nil

#
local something = player:FindFirstChild("something")
if something then --If the something exists
      --Your code
else
      --Your code
end