Advertisement
StenHisDirt

Check

May 20th, 2020
64,935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.01 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local TextButton = Instance.new("TextButton")
  5.  
  6. ScreenGui.Parent = game.CoreGui
  7. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8.  
  9. Frame.Parent = ScreenGui
  10. Frame.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  11. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  12. Frame.BorderSizePixel = 2
  13. Frame.Position = UDim2.new(0.428466618, 0, 0.43857494, 0)
  14. Frame.Size = UDim2.new(0, 255, 0, 97)
  15.  
  16. TextLabel.Parent = Frame
  17. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. TextLabel.BackgroundTransparency = 1.000
  19. TextLabel.Size = UDim2.new(0, 255, 0, 63)
  20. TextLabel.Font = Enum.Font.SourceSans
  21. TextLabel.Text = "This script is back into the Hub again :(\nTo purchase this Hub join the Discord server!\nClick the button below to copy the website\nand paste it into your web browser."
  22. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  23. TextLabel.TextSize = 14.000
  24.  
  25. TextButton.Parent = Frame
  26. TextButton.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  27. TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  28. TextButton.BorderSizePixel = 2
  29. TextButton.Position = UDim2.new(0, 0, 0.657314837, 0)
  30. TextButton.Size = UDim2.new(0, 255, 0, 33)
  31. TextButton.Font = Enum.Font.SourceSans
  32. TextButton.Text = "Click here!"
  33. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. TextButton.TextSize = 14.000
  35.  
  36. function clip(Text)
  37. if setclipboard then
  38. setclipboard(Text)
  39. TextButton.Text = "Copied!"
  40. else
  41. TextButton.Text = "Whoops! something went wrong.\nUse this instead.\nhttps://discord.com/invite/A22r2uT"
  42. end
  43. end
  44.  
  45. TextButton.MouseButton1Click:Connect(function()
  46. clip("https://discord.com/invite/A22r2uT")
  47. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement