You can write your topic however you want, but you need to answer these questions:
how do i make this lookvector tween
i dont know how
i have tried looking on the dev forum and tweening the cframe to the lookvector property but it doesnt work
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
-- This is an example Lua code block
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.
if CanKnockback == true then
local goals = {
Spectris.HumanoidRootPart.CFrame + Spectris.HumanoidRootPart.CFrame.LookVector * -KnockbackDamage
}
local Tween = TweenService:Create(Spectris.HumanoidRootPart, TweenInfo.new(.25, Enum.EasingStyle.Sine), {goals})
end
if CanKnockback == true then
local goals = {
CFrame = Spectris.HumanoidRootPart.CFrame + Spectris.HumanoidRootPart.CFrame.LookVector * -KnockbackDamage
}
local Tween = TweenService:Create(Spectris.HumanoidRootPart, TweenInfo.new(.25, Enum.EasingStyle.Sine), goals)
end