-- RayWare GUI for The Chosen One -- Credits: Ray, Koi, Ched -- Draggable: Yes local RayWare = Instance.new("ScreenGui") RayWare.Name = "RayWare" RayWare.ResetOnSpawn = false RayWare.Parent = game:GetService("CoreGui") local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 500, 0, 380) -- Smaller size MainFrame.Position = UDim2.new(0.5, -250, 0.5, -190) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.BorderSizePixel = 0 MainFrame.Parent = RayWare MainFrame.Active = true MainFrame.Draggable = true local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = MainFrame -- Title Bar local TitleBar = Instance.new("Frame") TitleBar.Size = UDim2.new(1, 0, 0, 50) TitleBar.BackgroundColor3 = Color3.fromRGB(30, 30, 30) TitleBar.Parent = MainFrame local TitleCorner = Instance.new("UICorner") TitleCorner.CornerRadius = UDim.new(0, 10) TitleCorner.Parent = TitleBar local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0.6, 0) Title.BackgroundTransparency = 1 Title.Text = "RayWare" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true Title.Font = Enum.Font.GothamBold Title.Parent = TitleBar local GameTitle = Instance.new("TextLabel") GameTitle.Size = UDim2.new(1, 0, 0.4, 0) GameTitle.Position = UDim2.new(0, 0, 0.6, 0) GameTitle.BackgroundTransparency = 1 GameTitle.Text = "The Chosen One" GameTitle.TextColor3 = Color3.fromRGB(200, 200, 200) GameTitle.TextScaled = true GameTitle.Font = Enum.Font.Gotham GameTitle.Parent = TitleBar -- Credits (Separated) local Credits = Instance.new("TextLabel") Credits.Size = UDim2.new(1, 0, 0, 20) Credits.Position = UDim2.new(0, 0, 1, -20) Credits.BackgroundTransparency = 1 Credits.Text = "Credits: Ray, Koi, Ched" Credits.TextColor3 = Color3.fromRGB(160, 160, 160) Credits.TextScaled = true Credits.Font = Enum.Font.Gotham Credits.Parent = MainFrame local CloseButton = Instance.new("TextButton") CloseButton.Size = UDim2.new(0, 40, 0, 40) CloseButton.Position = UDim2.new(1, -40, 0, 5) CloseButton.BackgroundTransparency = 1 CloseButton.Text = "✕" CloseButton.TextColor3 = Color3.fromRGB(255, 80, 80) CloseButton.TextScaled = true CloseButton.Font = Enum.Font.GothamBold CloseButton.Parent = TitleBar CloseButton.MouseButton1Click:Connect(function() RayWare:Destroy() end) local Scrolling = Instance.new("ScrollingFrame") Scrolling.Size = UDim2.new(1, -20, 1, -90) Scrolling.Position = UDim2.new(0, 10, 0, 70) Scrolling.BackgroundTransparency = 1 Scrolling.ScrollBarThickness = 6 Scrolling.Parent = MainFrame local UIListLayout = Instance.new("UIListLayout") UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0, 8) UIListLayout.Parent = Scrolling local function CreateToggle(name, callback) local ToggleFrame = Instance.new("Frame") ToggleFrame.Size = UDim2.new(1, -10, 0, 50) ToggleFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) ToggleFrame.Parent = Scrolling local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 8) Corner.Parent = ToggleFrame local Label = Instance.new("TextLabel") Label.Size = UDim2.new(0.65, 0, 1, 0) Label.BackgroundTransparency = 1 Label.Text = " " .. name Label.TextColor3 = Color3.fromRGB(255, 255, 255) Label.TextXAlignment = Enum.TextXAlignment.Left Label.TextScaled = true Label.Font = Enum.Font.Gotham Label.Parent = ToggleFrame local ToggleBtn = Instance.new("TextButton") ToggleBtn.Size = UDim2.new(0, 80, 0, 35) ToggleBtn.Position = UDim2.new(0.78, 0, 0.5, -17.5) ToggleBtn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) ToggleBtn.Text = "OFF" ToggleBtn.TextColor3 = Color3.fromRGB(255, 100, 100) ToggleBtn.TextScaled = true ToggleBtn.Font = Enum.Font.GothamBold ToggleBtn.Parent = ToggleFrame local enabled = false ToggleBtn.MouseButton1Click:Connect(function() enabled = not enabled if enabled then ToggleBtn.Text = "ON" ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 120, 0) ToggleBtn.TextColor3 = Color3.fromRGB(100, 255, 100) else ToggleBtn.Text = "OFF" ToggleBtn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) ToggleBtn.TextColor3 = Color3.fromRGB(255, 100, 100) end if callback then callback(enabled) end end) end local function CreateButton(name, callback) local BtnFrame = Instance.new("Frame") BtnFrame.Size = UDim2.new(1, -10, 0, 50) BtnFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) BtnFrame.Parent = Scrolling local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 8) Corner.Parent = BtnFrame local Btn = Instance.new("TextButton") Btn.Size = UDim2.new(1, -20, 1, -10) Btn.Position = UDim2.new(0, 10, 0, 5) Btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Btn.Text = name Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Btn.TextScaled = true Btn.Font = Enum.Font.GothamBold Btn.Parent = BtnFrame Btn.MouseButton1Click:Connect(callback or function() end) end -- ==================== FEATURES ==================== CreateToggle("Bkit Breaker (Anti-Build)", function(state) print("Bkit Breaker:", state and "ENABLED - Breaking others' Bkit" or "DISABLED") end) CreateToggle("Delete Aura", function(state) print("Delete Aura:", state) end) CreateToggle("Auto Build Spam", function(state) print("Auto Build:", state) end) CreateToggle("Speed Hack", function(state) local hum = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if hum then hum.WalkSpeed = state and 100 or 16 end end) CreateButton("Break All Visible Bkits", function() print("🔥 Breaking nearby Bkits...") end) CreateButton("Steal Bkit (Self)", function() print("Bkit Steal attempted") end) CreateButton("Restore My Bkit", function() print("Restoring Bkit...") end) CreateButton("Fling Players", function() print("Fling mode ready") end) Scrolling.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y + 50) print("✅ RayWare loaded for The Chosen One!")