hiya, scratching my head because of this one. how would i connect both Tool and Tool2 to both OnEquipped and onUnequipped at the bottom of my script?
local Tool = Character:WaitForChild("Kart", math.huge)
local Tool2 = Character:WaitForChild("Motorcycle", math.huge)
local function onEquipped()
ContextActionService:UnbindAction('RunBind')
end
local function onUnequipped()
ContextActionService:BindAction('RunBind', Handler, false, Enum.KeyCode.LeftShift)
Running = false
end
Tool.Equipped:Connect(onEquipped)
Tool.Unequipped:Connect(onUnequipped)
i couldn’t find my problem here, but i’m assuming either a pair or table is gonna be my solution, i just don’t know how to go about it