So basically I have a script that my friend gave me and I cant get it to work! I'm not sure if it works cause I cant get it to work! Here is the script he gave me. part.CFrame = CFrame.new(part.Position, character.HumanoidRootPart.Position) (Please be simple because im new.)
use this
part.CFrame = character.HumanoidRootPart.CFrame:ToWorldSpace(2,0,0)
The last 3 arguments of ToWorldSpace are relative coordinates that will be added to the character's position, you can change them until you have the position you want.
This will only work once, so the part will not follow the player, if you want to make the part follow the player put it in a loop
Like this
while wait() do part.CFrame = character.HumanoidRootPart.CFrame:ToWorldSpace(2,0,0) end