local labeltext = "something" local screen = Instance.new("ScreenGui") screen.ZIndexBehavior = Enum.ZIndexBehavior.Sibling screen.Name = "ScreenGui" screen.Parent = gethui() local container = Instance.new("Frame") container.Size = UDim2.new(0, 76, 0, 76) container.Position = UDim2.new(0, 436, 0, 26) container.BackgroundTransparency = 1 container.BorderSizePixel = 0 container.Parent = screen local button = Instance.new("ImageButton") button.Size = UDim2.new(0, 72, 0, 72) button.Position = UDim2.new(0, 2, 0, 2) button.BackgroundTransparency = 1 button.BorderSizePixel = 0 button.Image = "rbxassetid://104987941420060" button.Parent = container local roundcorner = Instance.new("UICorner") roundcorner.CornerRadius = UDim.new(0, 100) roundcorner.Parent = button local icon = Instance.new("ImageLabel") icon.Size = UDim2.new(0, 70, 0, 70) icon.Position = UDim2.new(0, 0, 0, 0) icon.BackgroundTransparency = 1 icon.BorderSizePixel = 0 icon.Image = "rbxassetid://79575685954511" icon.Parent = button local label = Instance.new("TextLabel") label.Size = UDim2.new(0, 70, 0, 20) label.Position = UDim2.new(0, 0, 0, 50) label.BackgroundTransparency = 1 label.TextColor3 = Color3.fromRGB(255, 255, 255) label.FontFace = Font.new("rbxasset://fonts/families/AccanthisADFStd.json", Enum.FontWeight.Regular, Enum.FontStyle.Normal) label.TextScaled = true label.TextWrapped = true label.Text = labeltext label.Parent = button local outline = Instance.new("UIStroke") outline.Thickness = 0.7 outline.Parent = label local dragger = Instance.new("UIDragDetector") dragger.Parent = container local soundid = 12221967 local function play_click() local click = Instance.new("Sound") click.SoundId = "rbxassetid://"..soundid click.Volume = 1 click.Parent = button click:Play() click.Ended:Once(function() click:Destroy() end) end button.MouseButton1Click:Connect(function() play_click() end)