mirror of
https://github.com/lune-org/lune.git
synced 2024-12-13 13:30:38 +00:00
34 lines
627 B
Lua
34 lines
627 B
Lua
|
local roblox = require("@lune/roblox") :: any
|
||
|
local Instance = roblox.Instance
|
||
|
|
||
|
local root = Instance.new("Model")
|
||
|
local child1 = Instance.new("Part")
|
||
|
local child2 = Instance.new("Part")
|
||
|
|
||
|
child1.Parent = root
|
||
|
child2.Parent = root
|
||
|
|
||
|
assert(#root:GetChildren() == 2)
|
||
|
assert(root:GetChildren()[1] == child1)
|
||
|
assert(root:GetChildren()[2] == child2)
|
||
|
|
||
|
root:ClearAllChildren()
|
||
|
|
||
|
assert(#root:GetChildren() == 0)
|
||
|
|
||
|
assert(not pcall(function()
|
||
|
return child1.Name
|
||
|
end))
|
||
|
|
||
|
assert(not pcall(function()
|
||
|
return child1.Parent
|
||
|
end))
|
||
|
|
||
|
assert(not pcall(function()
|
||
|
return child2.Name
|
||
|
end))
|
||
|
|
||
|
assert(not pcall(function()
|
||
|
return child2.Parent
|
||
|
end))
|