-- ========================================================== -- Tornado Alley Ultimate Hub | Update 2 -- Made by inDMNoaa -- ========================================================== local TargetPlaceId = 2313058949 -- 1. Sistem Deteksi Game if game.PlaceId ~= TargetPlaceId then local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "NotSupportGui" ScreenGui.Parent = game:GetService("CoreGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 350, 0, 100) Frame.Position = UDim2.new(0.5, -175, 0.5, -50) Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Frame.BorderSizePixel = 2 Frame.BorderColor3 = Color3.fromRGB(255, 0, 0) Frame.Parent = ScreenGui local TextLabel = Instance.new("TextLabel") TextLabel.Size = UDim2.new(1, 0, 1, 0) TextLabel.BackgroundTransparency = 1 TextLabel.Text = "Not support this game" TextLabel.TextColor3 = Color3.fromRGB(255, 50, 50) TextLabel.TextSize = 28 TextLabel.Font = Enum.Font.SourceSansBold TextLabel.Parent = Frame task.spawn(function() task.wait(5) ScreenGui:Destroy() end) return end -- ========================================================== -- Memuat UI Rayfield -- ========================================================== local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "🌪️ Tornado Alley Hub | Made by inDMNoaa", LoadingTitle = "Loading Update 2...", LoadingSubtitle = "By inDMNoaa", ConfigurationSaving = { Enabled = false }, Discord = { Enabled = false }, KeySystem = false }) local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Workspace = game:GetService("Workspace") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Camera = Workspace.CurrentCamera local Settings = { Speed = 16, Gravity = 196.2, Noclip = false, InfJump = false, Fly = false, FlySpeed = 50, ESPItems = { Enabled = false, Chams = false, Name = false, Distance = false, Color = Color3.fromRGB(255, 255, 0) }, ESPShelter = { Enabled = false, Chams = false, Name = false, Distance = false, Color = Color3.fromRGB(0, 255, 0) }, ESPPlayers = { Enabled = false, Chams = false, Name = false, Distance = false, Health = false, Color = Color3.fromRGB(255, 0, 0) } } -- ========================================================== -- TAB MENU -- ========================================================== local MainTab = Window:CreateTab("Home & Info", 4483345998) local MovementTab = Window:CreateTab("Movement", 4483345998) local ESPTab = Window:CreateTab("Visuals & ESP", 4483345998) -- ========================================================== -- HOME TAB -- ========================================================== MainTab:CreateLabel("Update coming soon") MainTab:CreateDivider() MainTab:CreateLabel("ɴᴇᴡ sᴇᴛᴛɪɴɢ") MainTab:CreateLabel("ɴᴇᴡ ᴇsᴘ") MainTab:CreateLabel("ɴᴇᴡ ғᴇᴀᴛᴜʀᴇs") MainTab:CreateLabel("New Setting leagues") MainTab:CreateLabel("and More") MainTab:CreateDivider() MainTab:CreateLabel("Made by inDMNoaa") -- ========================================================== -- MOVEMENT TAB -- ========================================================== MovementTab:CreateSlider({ Name = "Edit Speed", Range = {16, 300}, Increment = 1, Suffix = " Spd", CurrentValue = 16, Flag = "Spd", Callback = function(V)