fix: add CharacterModel type and create typing submodule

This commit is contained in:
2026-03-27 19:51:49 -04:00
parent 37a9502a10
commit efc41e7ee5
2 changed files with 10 additions and 1 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
local Players = game:GetService("Players")
local reface = {}
local convert = require("@self/convert")
local typing = require("@self/typing")
local function onPlayerAdded(player: Player)
player.CharacterAppearanceLoaded:Connect(function(character: Model)
player.CharacterAppearanceLoaded:Connect(function(character: typing.CharacterModel)
convert.convertCharacter(character.Humanoid)
end)
if player.Character then