Help with moving a model

        local Cage = Assets.Cage:Clone()
		Status.Value = "Someone will get a cage around their plate."
		wait(2)
		Status.Value = ""
		Cage.PrimaryPart.CFrame = Plate.CFrame + Vector3.new(0,4,0)
	

I am trying to move this model in my plates of fate game, and whenever I try, only the primary part is moved and its sideways.

yes it is welded
Does anyone know how to move a model to a specific spot?

3 Likes

(post withdrawn by author, will be automatically deleted in 1 hour unless flagged)

?

I’m making a plates of fate type game, similar to horrfic housing, why are you being rude
also i was asking for help not your opinion

(post withdrawn by author, will be automatically deleted in 1 hour unless flagged)

Swearing isn’t permitted on dev forum… especially not heavy slurs

try Cage:SetPrimaryPartCFrame(Plate.CFrame + Vector3.new(0,4,0))

2 Likes

I’ll give that a shot, thanks

Ill mark this as a solution if it works :slight_smile:

Thanks, worked perfectly!

Completly forgot :SetPrimaryPartCFrame exists lol

2 Likes