Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Part isn't moving on the direction I intended. Is there something wrong with my CFrame?

Asked by
Rheines 661 Moderation Voter
6 years ago

Hello, I'm trying to make a laser that spawns 5 studs in front of the character that spans from the sky until the ground. In addition, I would like to move the laser forwards for a few seconds in the direction my character is facing until it gets destroyed.

Currently, my laser spawns on the intended location, but it will always 'look' towards the middle of the baseplate/origin no matter where it was spawned. In addition, the laser will move towards that point in the baseplate instead of the front of my character.

I'm thinking it is because of the CFrame properties that I used, or I'm doing the wrong calculations. Here is my code:

01local Player = game.Players.LocalPlayer
02repeat wait() until Player.Character.Humanoid
03local Character = Player.Character
04local Human = Player.Character.Humanoid
05 
06local OnCooldown = false
07 
08function LaserCutter()
09    if OnCooldown == false then
10        --load and play animations here
11        OnCooldown = true
12 
13        --offset by 5 studs in front of the character from high above
14        local SkyPosition = Character.HumanoidRootPart.CFrame*CFrame.new(Vector3.new(0,500,-5))
15        --raycast downwards
View all 73 lines...

I apologize if I'm not understandable enough, and any help is appreciated.

0
I solved this. Rheines 661 — 6y

Answer this question