-- this gui is made for Swords Unleashed -- link to the game: https://www.roblox.com/games/1286140350/Swords-Unleashed-BETA local CloneHax = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local FirstButton = Instance.new("TextButton") local WelcomeLabel = Instance.new("TextLabel") local MeLabel = Instance.new("TextLabel") CloneHax.Parent = Game.CoreGui CloneHax.Name = "CloneHax" MeLabel.Parent = MainFrame MeLabel.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) MeLabel.BackgroundTransparency = 1 MeLabel.Position = UDim2.new(0.9, -37.5, 0.9, -12.5) MeLabel.Size = UDim2.new(0, 75, 0, 25) MeLabel.Font = Enum.Font.Arial MeLabel.FontSize = Enum.FontSize.Size24 MeLabel.Text = "Created By AlreadyWokeUp" MeLabel.TextColor3 = Color3.new(0.8, 0.8, 0.8) MeLabel.TextScaled = true MainFrame.Parent = CloneHax MainFrame.Name = "MainFrame" MainFrame.Active = true MainFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1) MainFrame.BorderSizePixel = 0 MainFrame.ClipsDescendants = true MainFrame.Draggable = true MainFrame.Position = UDim2.new(0.5, -250, 0.5, -150) MainFrame.Size = UDim2.new(0, 500, 0, 150) FirstButton.Parent = MainFrame FirstButton.Active = true FirstButton.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5) FirstButton.BorderSizePixel = 0 FirstButton.Position = UDim2.new(0.5, -75, 0.7, -15) FirstButton.Size = UDim2.new(0, 150, 0, 30) FirstButton.Text = "Boost Cash By 1.000.000" FirstButton.TextScaled = true WelcomeLabel.Parent = MainFrame WelcomeLabel.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) WelcomeLabel.BackgroundTransparency = 0 WelcomeLabel.Position = UDim2.new(0, 0, 0, 0) WelcomeLabel.Size = UDim2.new(0, 500, 0, 30) WelcomeLabel.Font = Enum.Font.Arial WelcomeLabel.FontSize = Enum.FontSize.Size24 WelcomeLabel.Text = "Swords Unleashed StatsBooster!" WelcomeLabel.TextColor3 = Color3.new(0.8, 0.8, 0.8) WelcomeLabel.TextSize = 20 FirstButton.MouseButton1Click:connect(function() game.ReplicatedStorage.BuyCase:FireServer(-1000000) end)