Advertisement
Vzurxy

RLUA Function Checker

Aug 4th, 2018
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. if game.Players.LocalPlayer.PlayerGui:FindFirstChild("SupportFunction")then
  2. game.Players.LocalPlayer.PlayerGui.SupportFunction:Destroy()
  3. print("Destroyed Extra Function")
  4. end
  5.  
  6. local SupportFunction = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local Function = Instance.new("TextBox")
  9. local Test = Instance.new("TextButton")
  10. local Info = Instance.new("TextLabel")
  11. local Exit = Instance.new("TextButton")
  12.  
  13. SupportFunction.Name = "SupportFunction"
  14. SupportFunction.Parent = game.Players.LocalPlayer.PlayerGui
  15.  
  16. MainFrame.Name = "MainFrame"
  17. MainFrame.Parent = SupportFunction
  18. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  19. MainFrame.BackgroundTransparency = 0.30000001192093
  20. MainFrame.BorderSizePixel = 0
  21. MainFrame.Position = UDim2.new(0.0961298421, 0, 0.341708541, 0)
  22. MainFrame.Size = UDim2.new(0, 209, 0, 196)
  23. MainFrame.Active = true
  24. MainFrame.Draggable = true
  25.  
  26. Function.Name = "Function"
  27. Function.Parent = MainFrame
  28. Function.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  29. Function.BackgroundTransparency = 0.30000001192093
  30. Function.BorderSizePixel = 0
  31. Function.Position = UDim2.new(0.234449759, 0, 0.275369763, 0)
  32. Function.Size = UDim2.new(0, 110, 0, 31)
  33. Function.Font = Enum.Font.SourceSans
  34. Function.Text = "Function"
  35. Function.TextColor3 = Color3.new(1, 1, 1)
  36. Function.TextSize = 14
  37.  
  38. Test.Name = "Test"
  39. Test.Parent = MainFrame
  40. Test.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  41. Test.BackgroundTransparency = 0.30000001192093
  42. Test.BorderSizePixel = 0
  43. Test.Position = UDim2.new(0.172248811, 0, 0.544373691, 0)
  44. Test.Size = UDim2.new(0, 136, 0, 43)
  45. Test.Font = Enum.Font.SourceSans
  46. Test.Text = "Test!"
  47. Test.TextColor3 = Color3.new(1, 1, 1)
  48. Test.TextSize = 14
  49.  
  50. Info.Name = "Info"
  51. Info.Parent = MainFrame
  52. Info.BackgroundColor3 = Color3.new(1, 1, 1)
  53. Info.BackgroundTransparency = 1
  54. Info.BorderSizePixel = 0
  55. Info.Position = UDim2.new(0.153110042, 0, -7.4505806e-09, 0)
  56. Info.Size = UDim2.new(0, 144, 0, 23)
  57. Info.Font = Enum.Font.SourceSansBold
  58. Info.Text = "Function Checker"
  59. Info.TextColor3 = Color3.new(1, 1, 1)
  60. Info.TextSize = 14
  61.  
  62. Exit.Name = "Exit"
  63. Exit.Parent = MainFrame
  64. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  65. Exit.BackgroundTransparency = 1
  66. Exit.Size = UDim2.new(0, 24, 0, 23)
  67. Exit.Font = Enum.Font.SourceSans
  68. Exit.Text = "X"
  69. Exit.TextColor3 = Color3.new(1, 0, 0)
  70. Exit.TextSize = 14
  71.  
  72. Exit.MouseButton1Down:connect(function()
  73. SupportFunction:Destroy()
  74. end)
  75.  
  76. Test.MouseButton1Down:connect(function()
  77. if Function.Text then
  78. print("Support")
  79. else
  80. print("Doesn't Support")
  81. end
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement