-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local Fr = game.Players.LocalPlayer.PlayerGui:WaitForChild("TankControl"):WaitForChild("Frame") local function set(name, pos, size) local btn = Fr:FindFirstChild(name) if btn and btn.Visible then btn.Position = pos btn.Size = size btn.Active = true end end set("Down", UDim2.new(.5, -13, 1, 10), UDim2.new(0, 268, 0, 118)) set("Right", UDim2.new(1, 1081, .5, -219), UDim2.new(0, 125, 0, 187)) set("Left", UDim2.new(0, 1127, .5, -222), UDim2.new(0, 132, 0, 187)) set("Up", UDim2.new(.5, -13, 0, 61), UDim2.new(0, 270, 0, 122))