Hello i have a script that allows me to have a custom character and the rest to have a different morph but when i spawn in as me the camera is locked and the body is floating while not playing any animation, Also with the display above it "StarterCharacter"
heres the script. This is also a script in serverscriptservice
local value = 0 local mods = {"BFFARESOOCOOL"} game.Players.PlayerAdded:connect(function(plr) value = 0 end) game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) wait(1) if plr.Name == "BFFARESOOCOOL" and value == 0 then local model = game.ReplicatedStorage.Characters.StarterCharacter local model1 = model:Clone() model1.Parent = game.Workspace model1.PrimaryPart.CFrame = plr.Character.PrimaryPart.CFrame plr.Character = model1 model1.Humanoid.HipHeight = 3.8 value = 1 end end) end)
I believe the issues are: