-
What do you want to achieve? I would like to increase the mount of force applied during this pushing ability
-
What is the issue? When I click they keybind for it twice, it reaches the desired speed, but when I click they kebind only once, it just moves a little bit.
-
What solutions have you tried so far? none so far
here’s a video of me pressing the keybind once:
https://gyazo.com/7ec015ffa7883e1f6a797ee9cbfccfde
here’s the script that control the bodyVelocity
script.Parent.RemoteEvent.OnServerEvent:Connect(function(player, Target)
print(Target)
local Magic = player.Character.Magic
for count = 1,10 do
wait()
Magic.Value -= 3
end
local humanoid = Target.Parent.Humanoid
humanoid:ChangeState(Enum.HumanoidStateType.Ragdoll)
local bv = Instance.new("BodyVelocity")
bv. Velocity = player.Character.HumanoidRootPart.CFrame.LookVector * 100000000
bv.P = 4000
bv.Parent = Target.Parent.HumanoidRootPart
wait(1)
bv:Destroy()
end)
all help is appreciated <3