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

Tool that increases player jumppower. Help?

Asked by 4 years ago

Alright, I'm trying to make a tool that increases player jumppower when they equip it.

My script so far:

function i() local jump = script.Parent.Parent.Humanoid

jump.Jumppower =('') +5

end script.Parent.Equipped:connect(i) script.Parent.Unequipped:connect(pie)

1 answer

Log in to vote
1
Answered by 4 years ago
local Tool = script.Parent

Tool.Equipped:Connect(function()
Tool.Parent.Humanoid.JumpPower = Tool.Parent.Humanoid.JumpPower + 10
end)

-- Place into your tool.

I hope this works for you, tell me if it does.

0
he literally provided a script with random stuff and you just gave him something. He could've done a little bit research and find his answer 0msh 333 — 4y
0
And the OP will post another request because you gave them free code hiimgoodpack 2009 — 4y
0
You can't get any charge in here If they want to pay they will do. But here is for providing help, and only that. Foxy_Developer 111 — 4y
0
^ Facts St_vnC 330 — 4y
0
Yes hello hexwulf? I'm trying also to create the script to revert the jumppower once it's unequipped. Dev_Azure -5 — 4y
Ad

Answer this question