loadstring(game:HttpGet("https://pastebin.com/raw/RYAvTsAS"))() task.spawn(function() local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local folder = LocalPlayer.PlayerGui:WaitForChild("RoactUI") .MobileButtons.NormalFrame local TARGET = "meleeFlourish" local function isObjectPresent() return folder:FindFirstChild(TARGET) ~= nil end folder.ChildAdded:Connect(function(child) if child.Name == TARGET then mouse1press() print("[AUTO PRESS] meleeFlourish appeared — pressed") end end) folder.ChildRemoved:Connect(function(child) if child.Name == TARGET then mouse1release() print("[AUTO PRESS] meleeFlourish removed — released") end end) if isObjectPresent() then mouse1press() print("[AUTO PRESS] Object already existed — pressed") end end)