JumpPower = 50
JumpHeight = 7.2local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local humanoid = character:WaitForChild("Humanoid")
humanoid.JumpPower = 100
end)
end)humanoid.JumpHeight = 15humanoid.UseJumpPower = true
humanoid.JumpPower = 80script.Parent.MouseButton1Click:Connect(function()
game.ReplicatedStorage.JumpEvent:FireServer()
end)game.ReplicatedStorage.JumpEvent.OnServerEvent:Connect(function(player)
local character = player.Character
if character then
local humanoid = character:FindFirstChild("Humanoid")
if humanoid then
humanoid.JumpHeight = 20
end
end
end)WaitForChild("Humanoid")