how to exit current scope roblo code example
Example: how to exit current scope roblox
-- exits the current scope
if true then
return
print("Hello World!")
end
-- code won't print anything
-- exits the current scope
if true then
return
print("Hello World!")
end
-- code won't print anything