From f75619c39e50c3dafa00664c33940d178d4e3b35 Mon Sep 17 00:00:00 2001 From: I-Have-An-Issue <34550332+I-Have-An-Issue@users.noreply.github.com> Date: Sat, 18 Feb 2023 02:55:26 -0500 Subject: [PATCH] Fix bodyshot.lua charapp appearance --- src/lua/bodyshot.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua/bodyshot.lua b/src/lua/bodyshot.lua index 1af7359..cfdf5f1 100644 --- a/src/lua/bodyshot.lua +++ b/src/lua/bodyshot.lua @@ -8,7 +8,7 @@ game:GetService("ContentProvider"):SetBaseUrl(baseUrl) game:GetService("ScriptContext").ScriptsDisabled = true local Player = game.Players:CreateLocalPlayer(0) -Player.CharacterAppearance = ("%s/users/%d/character"):format(baseUrl, assetId) +Player.CharacterAppearance = ("%s/Character?id=%d"):format(baseUrl, assetId) Player:LoadCharacter(false) game:GetService("RunService"):Run()