Im making a dash movement using LinearVelocity RelativeTo Attachment1, and i want to make the dash direction related to player direction moving and Camera direction. But since i have little to no experience and is absolutely horrible at math, i rarely tinker with Camera and CFrame.
So i did research and as a first step, im making Part that hover above player head that always rotate facing the same way the camera face but remain stationary at its Z axis (Up and down)
Here’s the code :
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local Character = script.Parent
local Camera = workspace.CurrentCamera
local part = Instance.new("Part")
part.Anchored = true
part.CanCollide = false
part.Size = Vector3.new(1,1,1)
part.Position = Character:WaitForChild("Head").Position + Vector3.new(0,2,0)
part.Parent = Character
RunService.RenderStepped:Connect(function()
part.CFrame = CFrame.new(Character.Head.Position + Vector3.new(0,3,0),Vector3.new(Camera.CFrame.X,part.Position.Y,Camera.CFrame.Z))
end)
Is this the correct way, i mean it does work perfectly since part does facing the same way camera face without Z axis as i mentioned stuff.
But, like, is there a better way to approach or my method are okay?