Im in need of a tool that places a model (from my choice) but i dont know how to script that, what do i do?
Can you be more specific please?
I can’t code an entire system for you, but I can give you an idea as to how to do it.
In a LocalScript, Mouse.Hit can get the position of the mouse, and use a RemoteEvent to tell the server the mouse position in the world. Have your model in ServerStorage, and use :Clone() on it and parent it to workspace. Then, set it’s PrimaryPart position to where Mouse.Hit was.
You learn how to script. But in all seriosness, you should put a part at the center of the model, set it as the primary part and then you can call model:SetPrimaryPartCFrame(CFrame.new()). Though I think that SetPrimaryPartCFrame() is deprecated so instead I would weld all of the parts to the primary part, anchor it and then unanchor all of the other parts inside the model and simply set the primary part’s CFrame afterwards.