ProfileService returning "Promise(Started)"

I’m using profile service for datastore and all but strangely enough, when I try to return a value it tells me the value is “Promise(Started)” but when I print the value before returning it prints out 0 (which is supposed to happen).


Does anyone have any idea how I can resolve this?

SOLVED! I used knit and when startign the client, I had to do:

Knit.Start({ServicePromises  = false}):andThen(function()
	print('Knit started on client')
end):catch(warn)
2 Likes