local CoreGui = game:GetService("CoreGui") local TopBarApp = CoreGui:FindFirstChild("TopBarApp") local RobloxGui = CoreGui:FindFirstChild("RobloxGui") local Players = game:GetService("Players") local player = Players.LocalPlayer local PlayerGui = player:FindFirstChild("PlayerGui") local OldRobloxGui = PlayerGui:FindFirstChild("RobloxGui") local TopBarContainer = OldRobloxGui:FindFirstChild("TopBarContainer") local Chat = TopBarContainer:FindFirstChild("Chat") if Chat then Chat.Position = UDim2.new(0, 50, 0, 0) end local BackPack = TopBarContainer:FindFirstChild("Backpack") if BackPack then BackPack.Position = UDim2.new(0, 100, 0, 0) end local Settings = TopBarContainer:FindFirstChild("Settings") if Settings then Settings.Position = UDim2.new(0, 0, 0, 0) end if TopBarApp then TopBarApp.Enabled = false end if RobloxGui then RobloxGui:Destroy() end