local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "Modifier" screenGui.ResetOnSpawn = false screenGui.IgnoreGuiInset = true screenGui.Parent = playerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 260, 0, 130) frame.Position = UDim2.new(0.5, -130, 0.5, -75) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = screenGui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -20, 0, 28) title.Position = UDim2.new(0, 10, 0, 10) title.BackgroundTransparency = 1 title.Text = "Change Your Brush Size" title.Font = Enum.Font.SourceSansBold title.TextSize = 16 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Parent = frame local other = Instance.new("TextLabel") other.Size = UDim2.new(1, -20, 0, 18) other.Position = UDim2.new(0, 10, 0, 40) other.BackgroundTransparency = 1 other.Text = "(50= large, 500= VERY large)" other.Font = Enum.Font.SourceSans other.TextSize = 11 other.TextColor3 = Color3.fromRGB(180, 180, 180) other.Parent = frame local placeholder = Instance.new("TextBox") placeholder.Size = UDim2.new(1, -60, 0, 32) placeholder.Position = UDim2.new(0.5, -100, 0, 80) placeholder.BackgroundColor3 = Color3.fromRGB(40, 40, 40) placeholder.BorderSizePixel = 0 placeholder.Font = Enum.Font.SourceSans placeholder.TextSize = 15 placeholder.Text = "" placeholder.PlaceholderText = "0" placeholder.PlaceholderColor3 = Color3.fromRGB(150, 150, 150) placeholder.TextColor3 = Color3.fromRGB(255, 255, 255) placeholder.ClearTextOnFocus = false placeholder.Parent = frame placeholder.FocusLost:Connect(function(enterPressed) local num = tonumber(placeholder.Text) if num then player:SetAttribute("BrushRadius", num) screenGui:Destroy() else placeholder.Text = "" end end) -- hey.. if ur seeing this.. watch widows bay :3