This is a support category for asking questions about how to get something done on the Roblox websites or how to do something on Roblox applications such as Roblox Studio.
You can write your topic however you want, but you need to answer these questions:
I simply want the door tween in server and client.
The issue is; The Doors tween on the client side and work fine. However in the server tap it does not tween but the hinge does, why im worried? Because when you rejoin in a server the door is open then it will be closed and will bug ALOT.
I tried using Welds, Weldsconstraint nothing works. WeldConstraints do not weld and just freeze it. And welds do work but not in server
On Roblox, the client and the server have separate computing environments. Changes made on the client won’t be automatically mirrored on the server unless you explicitly make it so using remote events, unless you made changes on the server. Client-Server Model
To tell the server to make these changes, you’ll want to use Remote Events, which are used to communicate from the Client to the Server, and vice versa.
Read through this guide to understand how to use Remote Events in Roblox: Remote Events and Callbacks | Documentation - Roblox Creator Hub