How would I go about making a part local?

I’m not that great of a scripter, so I’m unsure if this term is correct.
But let me explain what I am trying to do.

Basically, I am making a puzzle section for my game, it requires a player to push a brick to a certain part of the puzzle. But I want this brick to only be moved on that persons client, and no one else when he moves it.

Im not asking to be given a complete script or anything. I just want to know where would I go about to learn how to do this? Ive tried searching up youtube tutorials and on here. But I cannot find what im looking for.

edit: all I have found is just tutorials for making doors local for like vip gamepasses and what not.

Just create the part from a LocalScript…?

1 Like

You can create parts local to the client either by using Instance.new("Part") from a local script, or cloning it from a storage area, like ReplicatedStorage, also from a local script. Then all you have to do is make it a descendant of workspace.

3 Likes

Sorry it took me so long to respond. But this seems to work fine. Thank you!

1 Like