Look at this. How to solve it?
- Open a new baseplate
- Open Toolbox, search for Models, Trucks, Filter by “Roblox” and drag to workspace
- Run and sit at the white truck
- Delete the truck instance
Look at this. How to solve it?
Its because you are deleting on the client.
the server still thinks the player is in the truck as it should
Interesting.
But the same is not happening when destroying the instance via script:
Try to put this script on ServerScriptService:
for i=1, 10 do
print(i)
wait(1)
end
workspace["Pickup Truck (white)"]:Destroy()
Run and enter the white truck in 10 seconds.
Even destroyed on the server-side, the legs are lost.
It seems that since the truck scripts themselves actually make the hats and the lower legs/feet of the body transparent, it wont revert this change since the script that would detect the player leaving the truck, is destroyed
Either go into the scripts to prevent the stuff from going transparent, or revert it manually on deletion
Now I see that it’s only the transparency remainging.
I will manually fix this.
Thank you very much!