Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

help with moving models?

Asked by 9 years ago
1player = game.Players.LocalPlayer
2mouse = player:GetMouse()
3m = Instance.new("Message",player.Character)
4m.Name = 'short'
5game.Workspace.Model.Parent = m
6mouse.Move:connect(function()
7    player.Character.short:WaitForChild("Model"):SetPrimaryPartCFrame(mouse.Hit)
8end)

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 answer

Log in to vote
4
Answered by 9 years ago
1player.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.

0
thank you, now all i need to do is get them moving in grids... ScriptsAhoy 202 — 9y
Ad

Answer this question