Hi,
I have some properties inside of a table that are simple references to the PlayerGui and Backpack of a player. The issue is, even though I am asserting the types of StarterGui/StarterPack for intellisense, I am simply getting instance.
Client.PlayerGui = Player:WaitForChild("PlayerGui") :: typeof(game:GetService("StarterGui"))
Client.PlayerBackpack = Player:WaitForChild("Backpack") :: typeof(game:GetService("StarterPack"))
To note, asserting this type does work on variables but not here for whatever reason.