Hey, I have this script that makes a part move up and down however I would like the script to start when I have touched the part? How would I do this? Any help would be great ! :D
Here is the script:
for i=1, 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999, 1 do distance = 250 for i = 0, distance do script.Parent.CFrame = script.Parent.CFrame+Vector3.new(0,0.2, 0) wait() end for i = 0, distance do script.Parent.CFrame = script.Parent.CFrame-Vector3.new(0,0.2,0) wait() end end
Script in a part (not localscript):
script.Parent.Touched:connect(function(hit) local victim = hit.Parent --script here end)