Advertisement
pp_God

DEMISE v1 PET SIMULATOR X GUI

Dec 21st, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Gradient = Instance.new("Frame")
  8. local UIGradient = Instance.new("UIGradient")
  9. local UICorner = Instance.new("UICorner")
  10. local label = Instance.new("TextLabel")
  11. local label2 = Instance.new("TextLabel")
  12. local MukuroHub = Instance.new("TextButton")
  13. local MasterHub = Instance.new("TextButton")
  14. local FadeLyrics = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ResetOnSpawn = false
  20.  
  21. Gradient.Name = "Gradient"
  22. Gradient.Parent = ScreenGui
  23. Gradient.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Gradient.BorderColor3 = Color3.fromRGB(27, 42, 53)
  25. Gradient.BorderSizePixel = 0
  26. Gradient.Position = UDim2.new(0.185633004, 0, 0.34035477, 0)
  27. Gradient.Size = UDim2.new(0, 442, 0, 234)
  28. Gradient.Active = true
  29. Gradient.Draggable = true
  30.  
  31. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(116, 137, 255)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(237, 102, 109))}
  32. UIGradient.Parent = Gradient
  33.  
  34. UICorner.CornerRadius = UDim.new(0, 4)
  35. UICorner.Parent = Gradient
  36.  
  37. label.Name = "label"
  38. label.Parent = Gradient
  39. label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. label.BorderColor3 = Color3.fromRGB(255, 255, 255)
  41. label.Size = UDim2.new(0, 442, 0, 35)
  42. label.Font = Enum.Font.Gotham
  43. label.Text = "DEMISE v1 (Pet Simulator X)"
  44. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. label.TextSize = 17.000
  46.  
  47. label2.Name = "label2"
  48. label2.Parent = Gradient
  49. label2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50. label2.BorderColor3 = Color3.fromRGB(255, 255, 255)
  51. label2.Position = UDim2.new(0, 0, 0.923076928, 0)
  52. label2.Size = UDim2.new(0, 442, 0, 18)
  53. label2.Font = Enum.Font.Gotham
  54. label2.Text = "Made by ! M'#4912 | h4tedsinz"
  55. label2.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. label2.TextSize = 12.000
  57.  
  58. MukuroHub.Name = "MukuroHub"
  59. MukuroHub.Parent = Gradient
  60. MukuroHub.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  61. MukuroHub.Position = UDim2.new(0.0452488698, 0, 0.230769232, 0)
  62. MukuroHub.Size = UDim2.new(0, 180, 0, 40)
  63. MukuroHub.Font = Enum.Font.Arial
  64. MukuroHub.Text = "Mukuro Hub (Best one)"
  65. MukuroHub.TextColor3 = Color3.fromRGB(0, 0, 0)
  66. MukuroHub.TextSize = 15.000
  67. MukuroHub.MouseButton1Down:connect(function()
  68. loadstring(game:HttpGet"https://raw.githubusercontent.com/xDepressionx/Free-Script/main/AllScript.lua")()
  69. end)
  70.  
  71. MasterHub.Name = "MasterHub"
  72. MasterHub.Parent = Gradient
  73. MasterHub.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  74. MasterHub.Position = UDim2.new(0.547511339, 0, 0.230769232, 0)
  75. MasterHub.Size = UDim2.new(0, 180, 0, 40)
  76. MasterHub.Font = Enum.Font.Arial
  77. MasterHub.Text = "Master Hub (Needs key)"
  78. MasterHub.TextColor3 = Color3.fromRGB(0, 0, 0)
  79. MasterHub.TextSize = 15.000
  80. MasterHub.MouseButton1Down:connect(function()
  81. loadstring(game:HttpGet("https://raw.githubusercontent.com/DestyXyz/Master-Hub-V2/main/mainx"))()
  82. end)
  83.  
  84. FadeLyrics.Name = "FadeLyrics"
  85. FadeLyrics.Parent = Gradient
  86. FadeLyrics.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  87. FadeLyrics.Position = UDim2.new(0.244343907, 0, 0.56410259, 0)
  88. FadeLyrics.Size = UDim2.new(0, 226, 0, 50)
  89. FadeLyrics.Font = Enum.Font.Arial
  90. FadeLyrics.Text = "Fade Lyrics! (DON'T CLICK!!)"
  91. FadeLyrics.TextColor3 = Color3.fromRGB(0, 0, 0)
  92. FadeLyrics.TextSize = 14.000
  93. FadeLyrics.MouseButton1Down:connect(function()
  94. local song = "fade"
  95.  
  96. request = game:HttpGet("https://lyrics.flc.bar/search?song=" .. song)
  97.  
  98. decoded = game.HttpService:JSONDecode(request)
  99.  
  100. local lyrics = {}
  101. for i in decoded.lyrics:gmatch("[^\r\n]+") do
  102. table.insert(lyrics, i)
  103. end
  104.  
  105. for i, v in pairs(lyrics) do
  106. wait(3)
  107. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v, "All")
  108. end
  109. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement