Hey, lately I've been developing a script that lets me place a model whereever I click. for example:
stora = game.ServerStorage model = stora.Model mouse = game.Players.LocalPlayer:GetMouse() mouse.Button1Down:connect(function() clon = model:Clone() clon.Parent = workspace clon:MoveTo(Vector3.new(mouse.Hit.p)) -- this doesnt work it it just makes the position 0,0,0. end)
Leave any questions down below.
Much appreciated.