of     1   

Vexchan
#183552370Sunday, February 14, 2016 1:54 AM GMT

Can anyone tel me how to fix this? script.Parent.CFrame = CFrame.new(Vector3.new(workspace.Model.Torso.Position)) or script.Parent.Position = Vector3.new(workspace.Model.Torso.Position) Everytime I run either of these it brings the part to 0,0,0 with no errors.
Vexchan
#183552670Sunday, February 14, 2016 1:57 AM GMT

B1
thegoodpuppy
#183552800Sunday, February 14, 2016 1:59 AM GMT

script.Parent.CFrame = Vector3.new(Workspace.Model.Torso.Position If you don't have a variable, do game.Workspace also.
cofunction
#183552848Sunday, February 14, 2016 2:00 AM GMT

script.Parent.Position = game.Workspace.Model.Torso.Position
mattscy
#183552862Sunday, February 14, 2016 2:00 AM GMT

Just do script.Parent.CFrame = workspace.Model.Torso.CFrame
Vexchan
#183552903Sunday, February 14, 2016 2:01 AM GMT

Workspace is a deprecated method. Using workspace skips game.Workspace btw. The above wouldnt work, because CFrame doesnt play in with Vector on the same lines. Also there werent any parenthesis. Ty for helpin out some though.
Vexchan
#183552946Sunday, February 14, 2016 2:01 AM GMT

@Matt Ur a life saver lol thanks a ton!
thegoodpuppy
#183553037Sunday, February 14, 2016 2:03 AM GMT

oh gg i forgot about that rip my scripting

    of     1