stop function from running roblox lua code example
Example: how to stop code roblo
-- exits the current scope
if (condition) then
return
print("Hello World!")
end
-- code won't print anything
-- exits the current scope
if (condition) then
return
print("Hello World!")
end
-- code won't print anything