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?
hasoco
(Kenpachi Zaraki)
#2
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
system
(system)
Closed
#5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.