local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") _G.MultiClick = true task.spawn(function() while _G.MultiClick do for _, v in pairs(playerGui:GetDescendants()) do if v.Name == "MobileButton" and v:IsA("GuiButton") and v.Visible then -- Direct activation for maximum speed local connections = getconnections(v.Activated) for _, connection in pairs(connections) do connection:Fire() end -- Also fires MouseButton1Click just in case the game uses that local clickConnections = getconnections(v.MouseButton1Click) for _, connection in pairs(clickConnections) do connection:Fire() end end end task.wait(0.01) -- High-speed mode for your Samsung end end)