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

Moving a model with mouse?

Asked by
k1nq 30
9 years ago
01local P = game.Players.LocalPlayer
02local Plr = P.Character or P.CharacterAdded:wait()
03local H = Plr:WaitForChild("Humanoid")
04local Mouse = P:GetMouse()
05local model = Instance.new("Model")
06model.Name = "Test"
07model.Parent = game.Workspace.Camera
08 
09 
10for i,v in pairs(game.lighting.Test:GetChildren()) do
11    v:Clone().Parent = game.Workspace.CurrentCamera.Test
12end
13local new = game.Workspace.CurrentCamera.Test:GetChildren()
14local part = game.Lighting.Test.Part
15wait(1)
View all 36 lines...

So, currently I have this but the model won't seem to show up.

Any ideas on how to fix it?

1
The best way to move a model is by setting primary part, and then PrimaryPartCFrame, as the entire model will keep the same orientation as the primary part moves Xoqex 75 — 9y
0
So what would the code look like then, I've never used PrimaryPartCFrame k1nq 30 — 9y

Answer this question