So, I'm currently making a que line. Instead of: ~~~~~~~~~~~~~~~~~ hit.Parent.HumanoidRootPart.CFrame = CFrame.new(-26.3, 4.3, 116.3) ~~~~~~~~~~~~~~~~~ How do i make it so that instead of putting a position, I can just put a name of another block?
hit.Parent.HumanoidRootPart.CFrame = CFrame.new(NameOfAnotherBlock.Position)
Hello, IPhoneDrew!
In your script, you can just use OtherBlock.CFrame
Example:
hit.Parent.HumanoidRootPart.CFrame = CFrame.new(game.Workspace.OtherPart.CFrame)
This will aways work(Will rotate the player too)
Good Luck with your games!