1. -- AMIR TOKYO HUB MENU
  2.  
  3. local player = game.Players.LocalPlayer
  4.  
  5. local gui = Instance.new("ScreenGui",player.PlayerGui)
  6.  
  7. -- MAIN FRAME
  8. local main = Instance.new("Frame",gui)
  9. main.Size = UDim2.new(0,600,0,350)
  10. main.Position = UDim2.new(0.5,-300,0.5,-175)
  11. main.BackgroundColor3 = Color3.fromRGB(20,20,20)
  12. main.Active = true
  13. main.Draggable = true
  14.  
  15. -- TOP BAR
  16. local top = Instance.new("Frame",main)
  17. top.Size = UDim2.new(1,0,0,40)
  18. top.BackgroundColor3 = Color3.fromRGB(0,170,255)
  19.  
  20. local title = Instance.new("TextLabel",top)
  21. title.Size = UDim2.new(1,0,1,0)
  22. title.BackgroundTransparency = 1
  23. title.Text = "🔥 AMIR TOKYO HUB"
  24. title.TextScaled = true
  25. title.TextColor3 = Color3.new(1,1,1)
  26.  
  27. -- CLOSE BUTTON
  28. local close = Instance.new("TextButton",top)
  29. close.Size = UDim2.new(0,40,1,0)
  30. close.Position = UDim2.new(1,-40,0,0)
  31. close.Text = "X"
  32.  
  33. close.MouseButton1Click:Connect(function()
  34. gui:Destroy()
  35. end)
  36.  
  37. -- LEFT TAB MENU
  38. local tabs = Instance.new("Frame",main)
  39. tabs.Size = UDim2.new(0,150,1,-40)
  40. tabs.Position = UDim2.new(0,0,0,40)
  41. tabs.BackgroundColor3 = Color3.fromRGB(30,30,30)
  42.  
  43. -- CONTENT AREA
  44. local content = Instance.new("Frame",main)
  45. content.Size = UDim2.new(1,-150,1,-40)
  46. content.Position = UDim2.new(0,150,0,40)
  47. content.BackgroundColor3 = Color3.fromRGB(40,40,40)
  48.  
  49. ------------------------------------------------
  50. -- TAB BUTTON FUNCTION
  51. ------------------------------------------------
  52.  
  53. local function createTab(name,posY)
  54.  
  55. local button = Instance.new("TextButton",tabs)
  56. button.Size = UDim2.new(1,0,0,40)
  57. button.Position = UDim2.new(0,0,0,posY)
  58. button.Text = name
  59. button.BackgroundColor3 = Color3.fromRGB(45,45,45)
  60. button.TextColor3 = Color3.new(1,1,1)
  61.  
  62. local page = Instance.new("Frame",content)
  63. page.Size = UDim2.new(1,0,1,0)
  64. page.Visible = false
  65. page.BackgroundTransparency = 1
  66.  
  67. button.MouseButton1Click:Connect(function()
  68. for _,v in pairs(content:GetChildren()) do
  69. v.Visible = false
  70. end
  71. page.Visible = true
  72. end)
  73.  
  74. return page
  75. end
  76.  
  77. -- TABS
  78. local playerTab = createTab("Player",0)
  79. local teleportTab = createTab("Teleport",45)
  80. local trollTab = createTab("Troll",90)
  81. local vehicleTab = createTab("Vehicle",135)
  82. local settingsTab = createTab("Settings",180)
  83.  
  84. playerTab.Visible = true
  85.  
  86. -------------------------
  87. -- LOADING + MUSIC
  88. -------------------------
  89.  
  90. local player = game.Players.LocalPlayer
  91.  
  92. local loadGui = Instance.new("ScreenGui")
  93. loadGui.Parent = player.PlayerGui
  94.  
  95. local frame = Instance.new("Frame",loadGui)
  96. frame.Size = UDim2.new(1,0,1,0)
  97. frame.BackgroundColor3 = Color3.fromRGB(0,0,0)
  98.  
  99. local text = Instance.new("TextLabel",frame)
  100. text.Size = UDim2.new(1,0,1,0)
  101. text.BackgroundTransparency = 1
  102. text.Text = "🖤 AMIR HUB LOADING..."
  103. text.TextScaled = true
  104. text.TextColor3 = Color3.new(1,1,1)
  105. text.Font = Enum.Font.GothamBold
  106.  
  107. -- 🎵 اغنية صينية مشهورة
  108. local music = Instance.new("Sound",loadGui)
  109. music.SoundId = "rbxassetid://1837879082"
  110. music.Volume = 3
  111. music:Play()
  112.  
  113. wait(6)
  114.  
  115. loadGui:Destroy()