I need to set it on the x-axis

I need help with setting it vertically (or on it’s x-axis)
image

			airwave.CFrame = char.HumanoidRootPart.CFrame*CFrame.Angles(-90,0,0)
			airwave.Parent = workspace
			game.Debris:AddItem(airwave,4)

			local info = TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.In,0,false,0)
			local goal = {}
			goal.CFrame = char.HumanoidRootPart.CFrame * CFrame.new(0,0,-15) * CFrame.Angles(-90,0,0)
			goal.Transparency = 1
			
			local tween = tweenService:Create(airwave,info,goal)
			tween:Play()
			print("played")

![image|148x167](upload://dAnyX05sBV0uOkTvu92RSntHFLv.png)

Can you specify what’s going wrong exactly?
Or explain more in detail what needs to be changed?

Don’t worry, I found the solution.