How do i make this pet system player-visible?

Ok so, i am working on a pet simulator inspired pet system but there is one main problem.
PetSystem
(screenshot)

The other players cannot see the pets, so it’s kind of useless because the main point of pets is to of course use them but to also trade them and show them off.

I don’t know how i should go about making this. If you need pieces of code ill show you but i will not be pasting the entire code.

#help-and-feedback:scripting-support

Consider not making the pet system local.

sorry for posting in the wrong category.

1 Like

It’s because the client and server side is messed up. Heres a brief explanation:

The client side is what an individual sees, and server side is something that happens for everyone. Your scripts for the pet system are probably in a local script, which makes it so players can only see their own pets. I recommend using remote events or something to send a signal to a server script which spawns the pets, or just modifying the code to work in a non-local script.