And it works fine except I don’t know how to make it like wipeout.
The Ball things move in and out and you jump on it and you jump up a little.
So is there a way to make you jump like that?
It would not be by increasing a player jumpower.
Not working script
local ts = game:GetService("TweenService")
local part = script.Parent
local deb = false
local info = TweenInfo.new(0.8)
local tween1 = ts:Create(part,info,{Position = Vector3.new(-248.3, 1.9, 118.2)})
local tween2 = ts:Create(part,info,{Position = Vector3.new(-248.3, 1.9, 67.8)})
script.Parent.Touched:Connect(function(hit)
print("Make them jump like wipout Here")
end)
while true do
wait(1.5)
tween1:Play()
wait(1.5)
tween2:Play()
end
local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
if not plr then return end
local char = plr.Character
local humanoid = char:WaitForChild("Humanoid")
change plr.JumpPower = 50 to humanoid.JumpPower = 50 for all of them if you didn’t already. If that doesnt work then it means plr is nil and is returning.