Roblox – Cheatsheet

Jump Pad

local pad = script.Parent

pad.Touched:Connect(function(hit)
	local player = game.Players:GetPlayerFromCharacter(hit.Parent)
	if player then
		player.Character.Humanoid.JumpPower = 100
		player.Character.Humanoid.Jump = true
		task.wait(0.5)
		player.Character.Humanoid.JumpPower = 50
	end
end)

Links:

unsere-schule.org

×

Roblox – Cheatsheet

Code: