RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"when a players touches my Part it will launch them into the air with 1000 jumppower"
-- script for part local part = script.Parent local function launchPlayer(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local humanoid = player.Character:FindFirstChildWhichIsA("Humanoid") if humanoid then humanoid.JumpPower = 1000 humanoid:ChangeState(Enum.HumanoidStateType.Jumping) wait(1) humanoid.JumpPower = 50 end end end part.Touched:Connect(launchPlayer)