local tool = game.Players.LocalPlayer.Character:FindFirstChild("Sphere of Destruction") or game.Players.LocalPlayer.Backpack:FindFirstChild("Sphere of Destruction") if tool then local remote = tool:FindFirstChildOfClass("RemoteEvent") local sound = tool:FindFirstChild("KameCharge") if remote and sound then print("[*] RemoteEvent located. Starting continuous stat gain...") while true do sound:Play("KameFire") remote:FireServer("SphereDestruction", Vector3.new(-20212.90625, 1291.672067421875, -21308.94921875)) wait(0.1) end else print("[!] RemoteEvent or Sound not found.") end else print("[!] Tool not found.") end