The Chosen One
40 Views

Ray Ware Gui

The Chosen OneUploaded by
4 days ago
Please login to perform these actions:

Description

-- 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) 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 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) -- ==================== NOTIFICATION FUNCTION ==================== local function SendNotification(title, text) game.StarterGui:SetCore("SendNotification", { Title = title, Text = text, Duration = 3, }) 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

View Raw
Edited By: Niejen11 Download


Comments
0
No comments. Please Login to add a comment.