RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"do update player in a loop, but the loop stops once appearance loaded"
-- server script local player = game:GetService("Players").LocalPlayer local function update() player.CharacterAppearanceLoaded:Connect(function() print("Appearance loaded") return true end) end while not update() do print("Waiting for appearance to load") wait(1) end