local rs = game:GetService("ReplicatedStorage") local services = rs:WaitForChild("Packages") :WaitForChild("Knit") :WaitForChild("Services") local activatePower = services :WaitForChild("PowerService") :WaitForChild("RF") :WaitForChild("ActivatePower") local startSlap = services :WaitForChild("SlapperService") :WaitForChild("RF") :WaitForChild("StartSlap") task.spawn(function() while true do activatePower:InvokeServer() task.wait(1) end end) task.spawn(function() while true do startSlap:InvokeServer(8) task.wait(0.1) end end)