Advertisement
DarkRL412

Untitled

Apr 18th, 2023
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local UICorner = Instance.new("UICorner")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local UICorner_2 = Instance.new("UICorner")
  7. local TextButton = Instance.new("TextButton")
  8. local UICorner_3 = Instance.new("UICorner")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  18. main.Position = UDim2.new(0.042998258, 0, 0.218574107, 0)
  19. main.Size = UDim2.new(0, 504, 0, 486)
  20. main.Active = true
  21. main.Draggable = true
  22.  
  23. UICorner.CornerRadius = UDim.new(0, 15)
  24. UICorner.Parent = main
  25.  
  26. Frame.Parent = main
  27. Frame.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  28. Frame.Position = UDim2.new(0.039682541, 0, -0.0308641978, 0)
  29. Frame.Size = UDim2.new(0, 463, 0, 57)
  30.  
  31. TextLabel.Parent = Frame
  32. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. TextLabel.BackgroundTransparency = 1.000
  34. TextLabel.Position = UDim2.new(0.0799136087, 0, 0.132012099, 0)
  35. TextLabel.Size = UDim2.new(0, 388, 0, 61)
  36. TextLabel.Font = Enum.Font.LuckiestGuy
  37. TextLabel.Text = "Vezer Hub"
  38. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. TextLabel.TextScaled = true
  40. TextLabel.TextSize = 14.000
  41. TextLabel.TextWrapped = true
  42.  
  43. UICorner_2.CornerRadius = UDim.new(0, 20)
  44. UICorner_2.Parent = Frame
  45.  
  46. TextButton.Parent = main
  47. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. TextButton.BackgroundTransparency = 0.500
  49. TextButton.Position = UDim2.new(0.0198412389, 0, 0.123456791, 0)
  50. TextButton.Size = UDim2.new(0, 478, 0, 56)
  51. TextButton.Font = Enum.Font.FredokaOne
  52. TextButton.Text = "Vezer Hub"
  53. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. TextButton.TextScaled = true
  55. TextButton.TextSize = 14.000
  56. TextButton.TextWrapped = true
  57. TextButton.MouseButton1Down:connect(function()
  58. loadstring(game:HttpGet('https://raw.githubusercontent.com/ShibsDad/Vezer-Script-Pet-Simulator-X/main/Vezer%20Hub'))()
  59. end)
  60.  
  61. UICorner_3.CornerRadius = UDim.new(0, 20)
  62. UICorner_3.Parent = TextButton
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement