This is the script:
local Beam = script.Parent.Beam
local UFO = script.Parent.UFO
Beam.Touched:Connect(function(hit)
local hum = hit.Parent:WaitForChild("Humanoid")
hum:moveTo(UFO.Position)
end)
All the script does now makes the player go to the center of the beam
I want the script to make him go center and up to the UFO