Part isn't moving on the direction I intended. Is there something wrong with my CFrame?
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:
01 | local Player = game.Players.LocalPlayer |
02 | repeat wait() until Player.Character.Humanoid |
03 | local Character = Player.Character |
04 | local Human = Player.Character.Humanoid |
06 | local OnCooldown = false |
09 | if OnCooldown = = false then |
14 | local SkyPosition = Character.HumanoidRootPart.CFrame*CFrame.new(Vector 3. new( 0 , 500 ,- 5 )) |
16 | local Raycast = Ray.new(SkyPosition.p, -SkyPosition.upVector * 800 ) |
17 | local Ground, GroundPosition = workspace:FindPartOnRay(Raycast, Player.Character, false , false ) |
19 | if Ground then print ( 'ground found' ) end |
22 | local Origin = Instance.new( "Part" , workspace) |
23 | Origin.Transparency = 1 |
24 | Origin.Anchored = true |
25 | Origin.CanCollide = false |
26 | Origin.CFrame = CFrame.new(SkyPosition.p, Character.Head.CFrame.lookVector) |
29 | local Laser = Instance.new( "Part" , workspace) |
30 | Laser.BrickColor = BrickColor.new( "Deep orange" ) |
31 | Laser.Size = Vector 3. new( 3 , 3 , 3 ) |
33 | Laser.Material = "Neon" |
34 | Laser.CFrame = CFrame.new(GroundPosition, Character.Head.CFrame.lookVector) |
35 | Laser.CanCollide = false |
64 | Origin.CFrame = Origin.CFrame + Origin.CFrame.lookVector* 0.2 |
65 | Laser.CFrame = Laser.CFrame + Laser.CFrame.lookVector* 0.2 |
I apologize if I'm not understandable enough, and any help is appreciated.