I'm trying to use a script to change the positioning of my object. I've been using a touch event but it won't work.
function Touch() workspace.Part.Position(28, 100, -108) end script.parent.Touched:connect(Touch)
Apparently that did not work. Do any of you know? It will be a great help
Hello, it's because you're not changing the position here:
workspace.Part.Position = vector3.new(28, 100, -108)