-- Your original spam draw settings local Settings = { SpamAmount = 222000, -- Amount of lines to spam Color = Color3.new(1,1,1), -- Color of the lines Transparency = 1, -- Transparency of the lines Thickness = 0.05, -- Thickness of the lines AntiLag = true -- It will delete all your art to prevent from lag } -- Load the spam draw script with your settings loadstring(game:HttpGet("https://raw.githubusercontent.com/NaikoScript/Simple-Good-Scripts/main/FreeDraw"))(Settings) -- GUI part to display "JBL HUB" in black and purple local Players = game:GetService("Players") local player = Players.LocalPlayer or Players:GetPlayers()[1] -- For testing in studio local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "JBLHubGUI" screenGui.Parent = playerGui local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(0, 300, 0, 100) textLabel.Position = UDim2.new(0.5, -150, 0.1, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = "JBL HUB" textLabel.TextColor3 = Color3.new(0.5, 0, 0.5) -- Purple color textLabel.TextStrokeColor3 = Color3.new(0, 0, 0) -- Black stroke textLabel.TextStrokeTransparency = 0 textLabel.Font = Enum.Font.GothamBold textLabel.TextScaled = true textLabel.Parent = screenGui