hello devs. for my jojo game im gonna add king crimson. and for king crimson time erase character will disappear. i thought i was gonna make it with transparency but some issues like humanoid name and bubblechat got me away from that so i made it like in your client nothing gets changed but in other clients your character gets reparented to replicated storage. but after i did this, character starts to look weird. like it merges with the stand
Instead of reparenting, consider setting the character’s transparency and disabling unwanted parts like the humanoid name and bubble chat. For transparency, adjust the LocalTransparencyModifier property of all descendants on the client. To hide the name and chat, disable the DisplayDistanceType and BubbleChatEnabled properties in the Humanoid
RS.Events.Disappear.OnClientEvent:Connect(function(model,trfl)
if model == game.Players.LocalPlayer.Character then
return
end
if trfl == true then
model.Parent = game.ServerStorage
elseif trfl == false then
model.Parent = workspace
end
end)
In my experience, parenting a BasePart relative instance between workspace and any other non-workspace parent causes problems, with the exception of parenting to nil and back.