Hi guys i’m new to script and i want to learn how to use the lerp and CFrame to make anime attack on roblox games can you help me to learn how to use that ?
Thank you
Hi guys i’m new to script and i want to learn how to use the lerp and CFrame to make anime attack on roblox games can you help me to learn how to use that ?
Thank you
If you’re making something like a fireball or a projectile I recommend using body velocity instead of CFrames and lerp. Also if you’re new you shouldn’t be working on something more difficult like anime attacks. It takes a lot of work and experience.
To do a CFrame do:
while true do
part.CFrame = part.CFrame + Vector3.new(1,0,0)
wait(0.01)
end)
I made that and i would like to make that without tween service but how can i do ?
Oh my bad I thought it was a projectile so you should use CFrames to put the position of the beam in front of you. Do you want it to be a certain amount of length between you? Or do you want it to be where the mouse is? Because if I were you I would do the mouse because it would be hard to hit the player like that.