Advertisement
pp_God

DEMISE v1 TRADE TOWER GUI

Dec 16th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 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 RandomButton = Instance.new("TextButton")
  9. local FlareGui = Instance.new("TextButton")
  10. local label2 = Instance.new("TextLabel")
  11. local label = Instance.new("TextLabel")
  12. local UICorner = Instance.new("UICorner")
  13. local UIGradient = Instance.new("UIGradient")
  14.  
  15. --Properties:
  16.  
  17. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. ScreenGui.ResetOnSpawn = false
  19.  
  20. Gradient.Name = "Gradient"
  21. Gradient.Parent = ScreenGui
  22. Gradient.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. Gradient.BorderColor3 = Color3.fromRGB(27, 42, 53)
  24. Gradient.BorderSizePixel = 0
  25. Gradient.Position = UDim2.new(0.142958745, 0, 0.320399106, 0)
  26. Gradient.Size = UDim2.new(0, 502, 0, 242)
  27. Gradient.Active = true
  28. Gradient.Draggable = true
  29.  
  30. RandomButton.Name = "RandomButton"
  31. RandomButton.Parent = Gradient
  32. RandomButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. RandomButton.Position = UDim2.new(0.290836662, 0, 0.574380159, 0)
  34. RandomButton.Size = UDim2.new(0, 210, 0, 40)
  35. RandomButton.Font = Enum.Font.SourceSans
  36. RandomButton.Text = "Random Button!"
  37. RandomButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  38. RandomButton.TextSize = 25.000
  39. RandomButton.MouseButton1Down:connect(function()
  40. local song = "superidol"
  41.  
  42. request = game:HttpGet("https://lyrics.flc.bar/search?song=" .. song)
  43.  
  44. decoded = game.HttpService:JSONDecode(request)
  45.  
  46. local lyrics = {}
  47. for i in decoded.lyrics:gmatch("[^\r\n]+") do
  48. table.insert(lyrics, i)
  49. end
  50.  
  51. for i, v in pairs(lyrics) do
  52. wait(3)
  53. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v, "All")
  54. end
  55. end)
  56.  
  57. FlareGui.Name = "FlareGui"
  58. FlareGui.Parent = Gradient
  59. FlareGui.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  60. FlareGui.Position = UDim2.new(0.0398406386, 0, 0.206611574, 0)
  61. FlareGui.Size = UDim2.new(0, 461, 0, 55)
  62. FlareGui.Font = Enum.Font.SourceSans
  63. FlareGui.Text = "Flare Gui (Auto Click, Anti-AFK, Auto Open)"
  64. FlareGui.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. FlareGui.TextSize = 26.000
  66. FlareGui.MouseButton1Down:connect(function()
  67. loadstring(game:HttpGet("https://raw.githubusercontent.com/zNugget/Flare/main/Flare"))();
  68. end)
  69.  
  70. label2.Name = "label2"
  71. label2.Parent = Gradient
  72. label2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  73. label2.BorderColor3 = Color3.fromRGB(255, 255, 255)
  74. label2.Position = UDim2.new(0, 0, 0.925619841, 0)
  75. label2.Size = UDim2.new(0, 502, 0, 18)
  76. label2.Font = Enum.Font.Gotham
  77. label2.Text = "Made by ! M'#4912 | h4tedsinz"
  78. label2.TextColor3 = Color3.fromRGB(0, 0, 0)
  79. label2.TextSize = 12.000
  80.  
  81. label.Name = "label"
  82. label.Parent = Gradient
  83. label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  84. label.BorderColor3 = Color3.fromRGB(255, 255, 255)
  85. label.Size = UDim2.new(0, 502, 0, 32)
  86. label.Font = Enum.Font.Gotham
  87. label.Text = "DEMISE v1 (Trade Tower)"
  88. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  89. label.TextSize = 16.000
  90.  
  91. UICorner.CornerRadius = UDim.new(0, 4)
  92. UICorner.Parent = Gradient
  93.  
  94. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 148, 102)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(237, 102, 109))}
  95. UIGradient.Parent = Gradient
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement