Can someone tell me how to make my speed go only if my right hand hits the punching bag

local debounce = false
local player = game:GetService(“StarterPack”).Speed

script.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild(“Humanoid”) then
if debounce == false then
local player = game.Players:FindFirstChild(hit.Parent.Name)
player.leaderstats.Speed.Value = player.leaderstats.Speed.Value + 10
debounce = true
wait(3)
debounce = false
end
end
end)

if hit.Name == "RightHand" then

which line are u talkling about?

how do u make it left hand aswell?

if hit.Name == "RightHand" or hit.Name == "LeftHand" then