Super jump pad, #roblox #jumppad #scripting #robloxstudio
Try my first game:https://www.roblox.com/games/14828063...
_____________Jump Pad Script_______________
local pad = script.Parent -- Assuming the script is placed inside the pad part
local direction = Vector3.new(1, 0, 0) -- Adjust the horizontal direction vector here local verticalDirection = Vector3.new(0, 1, 0) -- Adjust the vertical direction vector here
local function onTouched(hit) local humanoid = hit.Parent:FindFirstChildOfClass("Humanoid")
if humanoid then local bodyVelocity = Instance.new("BodyVelocity") local speed = 100 -- Adjust the speed here local verticalSpeed = 100 -- Adjust the vertical speed here
local velocity = (direction.Unit * speed) + (verticalDirection.Unit * verticalSpeed)