--[[ Tung Tung Mod - Strong Auto Clicker (English) This script activates a strong auto clicker using a hotkey. Press the "P" key to toggle the Auto Clicker on or off. ]] _G.StrongAutoClicker = false -- Starts off -- Auto Clicker function spawn(function() while true do if _G.StrongAutoClicker then local args = { [1] = "Punch/Click_8812806635", [2] = "bb5f9ebd-3638-49c7-b65c-ee812666c176" } game:GetService("ReplicatedStorage").Postie.Sent:FireServer(unpack(args)) print("Strong Auto Clicker running...") -- Debug message end task.wait(0.1) end end) -- Hotkey to toggle (P key) game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessed) if gameProcessed then return end if input.KeyCode == Enum.KeyCode.P then _G.StrongAutoClicker = not _G.StrongAutoClicker print("Strong Auto Clicker: " .. tostring(_G.StrongAutoClicker)) end end) print("Tung Tung Mod loaded! Press 'P' to toggle the Strong Auto Clicker.")