1 | player = game.Players.LocalPlayer |
2 | mouse = player:GetMouse() |
3 | m = Instance.new( "Message" ,player.Character) |
4 | m.Name = 'short' |
5 | game.Workspace.Model.Parent = m |
6 | mouse.Move:connect( function () |
7 | player.Character.short:WaitForChild( "Model" ):SetPrimaryPartCFrame(mouse.Hit) |
8 | end ) |
this script makes a model move wherever the mouse is pointing, the only problem is that the model is rotated in accordance to the players camera, try it out and see what i mean. So how do i have the model be not weirdly rotated?
1 | player.Character.short:WaitForChild( "Model" ):SetPrimaryPartCFrame(mouse.Hit) |
This line of code sets the model's (primary part's) CFrame. That means both position and rotation. If you want to set only position, try SetPrimaryPartCFrame(CFrame.new(mouse.Hit.p))
. It'll create a new CFrame with no rotation.