У нас вы можете посмотреть бесплатно West Wood Script + No Key, Script in description или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
-- 🌈 RHTU SUPER HUB (Giao diện đẹp, 2 hàng, draggable) local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() -- GUI Setup local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "RHTU_SuperHub" gui.ResetOnSpawn = false -- Toggle Button (góc dưới phải) local toggle = Instance.new("TextButton", gui) toggle.Size = UDim2.new(0, 60, 0, 30) toggle.Position = UDim2.new(1, -70, 1, -50) toggle.Text = "👁️" toggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0) toggle.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", toggle).CornerRadius = UDim.new(0, 6) -- Main Frame local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 1000, 0, 160) frame.Position = UDim2.new(0.5, -500, 1, -180) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.Visible = true frame.Active = true frame.Draggable = true Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 10) -- Rainbow Title local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 25) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundTransparency = 1 title.Text = "🌈 RHTU Super Hub" title.Font = Enum.Font.GothamBold title.TextSize = 18 title.TextColor3 = Color3.fromRGB(255, 0, 0) -- Rainbow Effect task.spawn(function() while true do for i = 0, 1, 0.01 do title.TextColor3 = Color3.fromHSV(i, 1, 1) task.wait(0.02) end end end) -- Toggle GUI visibility toggle.MouseButton1Click:Connect(function() frame.Visible = not frame.Visible end) -- Tọa độ điểm đến local locations = { ["Nhà 1"] = Vector3.new(-1889, 11, -1027), ["Nhà 2"] = Vector3.new(-1964, 4, -1234), ["Nhà 3"] = Vector3.new(-2230, 2, -928), -- ✅ Sửa tọa độ ["Nhà 5"] = Vector3.new(-2211, 22, -1454), ["Nhà 6"] = Vector3.new(-2402, 3, -1635), ["Nhà 7"] = Vector3.new(-1935, 2, -1635), ["Nhà 8"] = Vector3.new(-1675, 12, -1661), ["Nhà 9"] = Vector3.new(-1690, 3, -1432), ["10"] = Vector3.new(-1553, 22, -1179), ["11"] = Vector3.new(-1458, 4, -1337), ["12"] = Vector3.new(-1455, 9, -1622), ["Cửa hàng"] = Vector3.new(-1825, 5, -1469), ["Nhà máy điện"] = Vector3.new(-2155, 9, -1796), ["Nhà thờ"] = Vector3.new(-1854, 17, -1927), ["Thương nhân"] = Vector3.new(-2079, 9, -1016), } -- Tạo các nút theo 2 hàng local spacingX, spacingY = 5, 5 local buttonWidth, buttonHeight = 120, 30 local columns = 8 local index = 0 for name, pos in pairs(locations) do local row = math.floor(index / columns) local col = index % columns local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0, buttonWidth, 0, buttonHeight) btn.Position = UDim2.new(0, 10 + (buttonWidth + spacingX) * col, 0, 35 + (buttonHeight + spacingY) * row) btn.Text = name btn.Font = Enum.Font.Gotham btn.TextSize = 12 btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 6) btn.MouseButton1Click:Connect(function() if char and char:FindFirstChild("HumanoidRootPart") then char:MoveTo(pos) end end) index += 1 end #westwood#script##roblox