Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-3

How do I script knockback for my wind element? [closed]

Asked by 5 years ago

Please include the code which you are trying to use, so the community will be better-equipped to help you with your problem.

I wanted to have my wind element knockback people whenever I shoot the 1st skill. The problem is, I don't know how to make a script to send them flying. Somebody?

0
This is not a request site. EpicMetatableMoment 1444 — 5y
1
you use bodyforce User#22788 5 — 5y

Closed as Not Constructive by fredfishy, WideSteal321, EpicMetatableMoment, and xPolarium

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

make something with BodyVelocity Or Something Like That and script an On-Touched function

--BALL IS AN EXAMPLE
Ball.Touched:Connect(function(Hit)
if Hit.Parent.Humanoid == nil then
Ball:Destroy
else

instance.new("BodyVelocity", hit.Parent.Torso)

--then script your crap
end)
end
Ad