Knit: Not starting

Really simple issue here. Knit is just straight up not starting. No errors, warnings, nothing. It’s just not starting.

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Knit = require(ReplicatedStorage.Packages.Knit)

Knit.AddServices(script)
Knit.Start():andThen(function()
    print("started!")
end):catch(warn)

Any way to fix this?

Maybe use the colon method of Start()?

2 Likes

That’s not what Knit uses. It’s defined as .Start, not :Start, since you don’t need self.

Found the issue. One of the KnitInit methods in a service was yielding.

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.