Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if game.Players.LocalPlayer.PlayerGui:FindFirstChild("SupportFunction")then
- game.Players.LocalPlayer.PlayerGui.SupportFunction:Destroy()
- print("Destroyed Extra Function")
- end
- local SupportFunction = Instance.new("ScreenGui")
- local MainFrame = Instance.new("Frame")
- local Function = Instance.new("TextBox")
- local Test = Instance.new("TextButton")
- local Info = Instance.new("TextLabel")
- local Exit = Instance.new("TextButton")
- SupportFunction.Name = "SupportFunction"
- SupportFunction.Parent = game.Players.LocalPlayer.PlayerGui
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = SupportFunction
- MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- MainFrame.BackgroundTransparency = 0.30000001192093
- MainFrame.BorderSizePixel = 0
- MainFrame.Position = UDim2.new(0.0961298421, 0, 0.341708541, 0)
- MainFrame.Size = UDim2.new(0, 209, 0, 196)
- MainFrame.Active = true
- MainFrame.Draggable = true
- Function.Name = "Function"
- Function.Parent = MainFrame
- Function.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Function.BackgroundTransparency = 0.30000001192093
- Function.BorderSizePixel = 0
- Function.Position = UDim2.new(0.234449759, 0, 0.275369763, 0)
- Function.Size = UDim2.new(0, 110, 0, 31)
- Function.Font = Enum.Font.SourceSans
- Function.Text = "Function"
- Function.TextColor3 = Color3.new(1, 1, 1)
- Function.TextSize = 14
- Test.Name = "Test"
- Test.Parent = MainFrame
- Test.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Test.BackgroundTransparency = 0.30000001192093
- Test.BorderSizePixel = 0
- Test.Position = UDim2.new(0.172248811, 0, 0.544373691, 0)
- Test.Size = UDim2.new(0, 136, 0, 43)
- Test.Font = Enum.Font.SourceSans
- Test.Text = "Test!"
- Test.TextColor3 = Color3.new(1, 1, 1)
- Test.TextSize = 14
- Info.Name = "Info"
- Info.Parent = MainFrame
- Info.BackgroundColor3 = Color3.new(1, 1, 1)
- Info.BackgroundTransparency = 1
- Info.BorderSizePixel = 0
- Info.Position = UDim2.new(0.153110042, 0, -7.4505806e-09, 0)
- Info.Size = UDim2.new(0, 144, 0, 23)
- Info.Font = Enum.Font.SourceSansBold
- Info.Text = "Function Checker"
- Info.TextColor3 = Color3.new(1, 1, 1)
- Info.TextSize = 14
- Exit.Name = "Exit"
- Exit.Parent = MainFrame
- Exit.BackgroundColor3 = Color3.new(1, 1, 1)
- Exit.BackgroundTransparency = 1
- Exit.Size = UDim2.new(0, 24, 0, 23)
- Exit.Font = Enum.Font.SourceSans
- Exit.Text = "X"
- Exit.TextColor3 = Color3.new(1, 0, 0)
- Exit.TextSize = 14
- Exit.MouseButton1Down:connect(function()
- SupportFunction:Destroy()
- end)
- Test.MouseButton1Down:connect(function()
- if Function.Text then
- print("Support")
- else
- print("Doesn't Support")
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement