The cylinder's front is strange?
I have a kamehameha script and I'm trying to make it so it faces the mouse but I realized roblox says the long part of the cylinder is the front so I need it to rotate itself 90º but idk how.
1 | launch = Instance.new( 'Part' , ctr) |
2 | launch.Shape = 'Cylinder' |
3 | launch.Size = Vector 3. new( 75 , 5 , 5 ) |
4 | launch.CFrame = ctr:FindFirstChild( 'Torso' ).CFrame * CFrame.new( 0 , 0 , - 37.5 ) |
5 | launch.BrickColor = BrickColor.new( 'Toothpaste' ) |
6 | launch.Material = 'Neon' |
7 | launch.CanCollide = false |
9 | launch.CFrame = CFrame.new(launch.CFrame.Position, m.Hit.Position) |
sorry if it's indented. I was too lazy to remove the indentation from the script.