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

Position is not a valid member of Model?

Asked by
pilotly 15
4 years ago

Hello, the issue is on line 27 and despite it being a part it keeps returning the error "Position is not a valid member of Model".

I'm trying to make a auto-generating track.

Problem Code:

1    newMiddle.Position = Vector3.new(mainMiddle.Middle.Size.X/2,0,0)
2+ middle.Finish.Position
3-- And its the " Vector3.new(mainMiddle.Middle.Size.X/2,0,0) " part
01local ReplicatedStorage = game:GetService("ReplicatedStorage")
02local mapsFolder = ReplicatedStorage:WaitForChild("Maps")
03local maps = mapsFolder:GetChildren()
04 
05local lobby = game.Workspace:WaitForChild("Lobby").Lobby
06 
07maxLength = 10
08local mainMiddle = mapsFolder.Middle
09 
10 
11for i = 1, maxLength do
12    local middle = mapsFolder.Middle:Clone()
13    middle.PrimaryPart = middle.Start
14    middle.Parent = game.Workspace.Track
15    middle.Finish.Transparency = 1
View all 32 lines...
0
The reason is because Models don't have the position property RazzyPlayz 497 — 4y
0
You can't set the position of a model. aadenboy 17 — 4y
0
You can however use :SetPrimaryPartPosition with the model's priary part to make it move CreationNation1 459 — 4y

3 answers

Log in to vote
0
Answered by 4 years ago

Model doesn't have a Position property.

Ad
Log in to vote
0
Answered by 4 years ago

The only way to find a position of a model is model:GetPrimaryPartCFrame(), but it’s not returning a centre of a model, and you have to set primary part of a model (a part with “RootPart” in its name is a primary part of a model by default).

Log in to vote
0
Answered by 4 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.

Use

1Model:SetPrimaryPartCFrame(CFrame.new(pos))

Answer this question