Scripting Question

Hello, I have a question, I am making a system for game and I need to check if a specific folder exists in ServerStorage or not in a script, how can I do that?

Basically you just need to use an if statement like this.

if game:GetService('ServerStorage'):FindFirstChild(item) then -- replace item with your item name
	print('Item is here')
else
	print('Nope its not here')
end

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.