script.Parent.Position = script.Parent.Position + Vector3.new(0, 0, 0) i have this script but it guides the part nowhere lol t just goes to a random location every time
CFrame.new(script.parent).Position + Vector3.new(0,0,0) --Can you use it?
script.Parent.Touched:connect(function(what) local Humanoid = what.Parent:FindFirstChild("Humanoid") if Humanoid then script.Parent.Position = script.Parent.Position + Vector3.new(1,0,0) end end)