mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 09:30:03 +00:00
7 lines
308 B
Text
7 lines
308 B
Text
|
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
||
|
local std = require(ReplicatedStorage.std)
|
||
|
|
||
|
print(script.Parent:WaitForChild("systems"):GetChildren())
|
||
|
local loop = std.Scheduler(unpack(script.Parent:WaitForChild("systems"):GetChildren()))
|
||
|
game:GetService("RunService").Heartbeat:Connect(loop)
|