mirror of
https://github.com/lune-org/lune.git
synced 2024-12-13 21:40:40 +00:00
19 lines
549 B
Lua
19 lines
549 B
Lua
|
local roblox = require("@lune/roblox") :: any
|
||
|
local Instance = roblox.Instance
|
||
|
|
||
|
local root = Instance.new("Folder")
|
||
|
local child = Instance.new("Model")
|
||
|
local nested = Instance.new("Tool")
|
||
|
local adjacent = Instance.new("Model")
|
||
|
local descendant = Instance.new("Part")
|
||
|
|
||
|
descendant.Parent = nested
|
||
|
nested.Parent = child
|
||
|
adjacent.Parent = child
|
||
|
child.Parent = root
|
||
|
|
||
|
assert(child:FindFirstChild("Folder") == nil)
|
||
|
assert(child:FindFirstChild("Model") == adjacent)
|
||
|
assert(child:FindFirstChild("Tool") == nested)
|
||
|
assert(child:FindFirstChild("Part") == nil)
|