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

Unable to cast Instance to CoordinateFrame?

Asked by 4 years ago

so i am trying to change a part position randomly and i am trying to set a PrimaryCFrame to move a model here is my code

while true do
script.Parent:SetPrimaryPartCFrame(script.Parent.Main)
wait(0.5)
end

any help given is appreciated

1 answer

Log in to vote
1
Answered by 4 years ago

well, the :SetPrimaryPartCFrame() needs a CFrame to set the model's CFrame, so either make a CFrame.new() with the parts position or make the set primary part cframe to the parts cframe, e.g

while true do
    script.Parent:SetPrimaryPartCFrame(CFrame.new(script.Parent.Main.Position)) 
    wait(0.5)
    -- NOTE: MAKE SURE 'MAIN' IS NOT A MODEL
end

OR:

while true do
    script.Parent:SetPrimaryPartCFrame(script.Parent.Main.CFrame) 
    wait(0.5)
    -- NOTE: MAKE SURE 'MAIN' IS NOT A MODEL
end
0
Someone give this main the solution :weary: Also, you should note next time that he's trying to cast a value to an instance, which makes no sense syntactically :P   Psudar 882 — 4y
Ad

Answer this question