How to make the player fly up the beam of the UFO?

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

image

You can’t do hum:moveTo use tweening. There was just a post I saw just like this: Humanoid:MoveTo() How to move up, - #3 by headhooligan

2 Likes

THANK YOU! I appreciate the help that you have just given me!!! I hope your day goes swimmingly :slight_smile:

2 Likes