Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Gradient = Instance.new("Frame")
- local RandomButton = Instance.new("TextButton")
- local FlareGui = Instance.new("TextButton")
- local label2 = Instance.new("TextLabel")
- local label = Instance.new("TextLabel")
- local UICorner = Instance.new("UICorner")
- local UIGradient = Instance.new("UIGradient")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ResetOnSpawn = false
- Gradient.Name = "Gradient"
- Gradient.Parent = ScreenGui
- Gradient.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Gradient.BorderColor3 = Color3.fromRGB(27, 42, 53)
- Gradient.BorderSizePixel = 0
- Gradient.Position = UDim2.new(0.142958745, 0, 0.320399106, 0)
- Gradient.Size = UDim2.new(0, 502, 0, 242)
- Gradient.Active = true
- Gradient.Draggable = true
- RandomButton.Name = "RandomButton"
- RandomButton.Parent = Gradient
- RandomButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- RandomButton.Position = UDim2.new(0.290836662, 0, 0.574380159, 0)
- RandomButton.Size = UDim2.new(0, 210, 0, 40)
- RandomButton.Font = Enum.Font.SourceSans
- RandomButton.Text = "Random Button!"
- RandomButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- RandomButton.TextSize = 25.000
- RandomButton.MouseButton1Down:connect(function()
- local song = "superidol"
- request = game:HttpGet("https://lyrics.flc.bar/search?song=" .. song)
- decoded = game.HttpService:JSONDecode(request)
- local lyrics = {}
- for i in decoded.lyrics:gmatch("[^\r\n]+") do
- table.insert(lyrics, i)
- end
- for i, v in pairs(lyrics) do
- wait(3)
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v, "All")
- end
- end)
- FlareGui.Name = "FlareGui"
- FlareGui.Parent = Gradient
- FlareGui.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- FlareGui.Position = UDim2.new(0.0398406386, 0, 0.206611574, 0)
- FlareGui.Size = UDim2.new(0, 461, 0, 55)
- FlareGui.Font = Enum.Font.SourceSans
- FlareGui.Text = "Flare Gui (Auto Click, Anti-AFK, Auto Open)"
- FlareGui.TextColor3 = Color3.fromRGB(0, 0, 0)
- FlareGui.TextSize = 26.000
- FlareGui.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/zNugget/Flare/main/Flare"))();
- end)
- label2.Name = "label2"
- label2.Parent = Gradient
- label2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- label2.BorderColor3 = Color3.fromRGB(255, 255, 255)
- label2.Position = UDim2.new(0, 0, 0.925619841, 0)
- label2.Size = UDim2.new(0, 502, 0, 18)
- label2.Font = Enum.Font.Gotham
- label2.Text = "Made by ! M'#4912 | h4tedsinz"
- label2.TextColor3 = Color3.fromRGB(0, 0, 0)
- label2.TextSize = 12.000
- label.Name = "label"
- label.Parent = Gradient
- label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- label.BorderColor3 = Color3.fromRGB(255, 255, 255)
- label.Size = UDim2.new(0, 502, 0, 32)
- label.Font = Enum.Font.Gotham
- label.Text = "DEMISE v1 (Trade Tower)"
- label.TextColor3 = Color3.fromRGB(0, 0, 0)
- label.TextSize = 16.000
- UICorner.CornerRadius = UDim.new(0, 4)
- UICorner.Parent = Gradient
- UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 148, 102)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(237, 102, 109))}
- UIGradient.Parent = Gradient
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement