Comment sortir de la portée actuelle Roblox

-- exits the current scope

if true then 
    return
	print("Hello World!")
end 

-- code won't print anything
Cool Coder 123