Advertisement
DarkReaperYTE

Untitled

Feb 22nd, 2020
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local titel = Instance.new("TextLabel")
  9. local _3 = Instance.new("TextButton")
  10. local X = Instance.new("TextButton")
  11. local _1 = Instance.new("TextButton")
  12. local _2 = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. main.Name = "main"
  20. main.Parent = ScreenGui
  21. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  22. main.Position = UDim2.new(0.019191226, 0, 0.0270270091, 0)
  23. main.Size = UDim2.new(0, 280, 0, 422)
  24. main.Active = true
  25. main.Draggable = true
  26.  
  27. titel.Name = "titel"
  28. titel.Parent = main
  29. titel.BackgroundColor3 = Color3.fromRGB(157, 157, 157)
  30. titel.Size = UDim2.new(0, 280, 0, 24)
  31. titel.Font = Enum.Font.SourceSans
  32. titel.Text = "Testing GUI"
  33. titel.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. titel.TextSize = 14.000
  35.  
  36. _1.Name = "1"
  37. _1.Parent = main
  38. _1.BackgroundColor3 = Color3.fromRGB(38, 255, 0)
  39. _1.Position = UDim2.new(0.142857149, 0, 0.573459744, 0)
  40. _1.Size = UDim2.new(0, 200, 0, 50)
  41. _1.Font = Enum.Font.SourceSans
  42. _1.Text = "NInja Legends v1"
  43. _1.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. _1.TextScaled = true
  45. _1.TextSize = 14.000
  46. _1.TextWrapped = true
  47. _1.MouseButton1Down:connect(function()
  48. loadstring(game:HttpGet(("https://jxnt-scripts.com/scripts/ninjalegends/NinjaLegendsV1.lua"),true))()
  49. end)
  50.  
  51. X.Name = "X"
  52. X.Parent = main
  53. X.BackgroundColor3 = Color3.fromRGB(184, 0, 0)
  54. X.Position = UDim2.new(0.142857149, 0, 0.777251244, 0)
  55. X.Size = UDim2.new(0, 200, 0, 50)
  56. X.Font = Enum.Font.SourceSans
  57. X.Text = "Destroy Gui"
  58. X.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. X.TextScaled = true
  60. X.TextSize = 14.000
  61. X.TextWrapped = true
  62. X.MouseButton1Down:connect(function()
  63. main.Visible = false
  64. end)
  65.  
  66. _2.Name = "2"
  67. _2.Parent = main
  68. _2.BackgroundColor3 = Color3.fromRGB(38, 255, 0)
  69. _2.Position = UDim2.new(0.142857149, 0, 0.132701427, 0)
  70. _2.Size = UDim2.new(0, 200, 0, 50)
  71. _2.Font = Enum.Font.SourceSans
  72. _2.Text = "NInja Legends v2"
  73. _2.TextColor3 = Color3.fromRGB(0, 0, 0)
  74. _2.TextScaled = true
  75. _2.TextSize = 14.000
  76. _2.TextWrapped = true
  77. _2.MouseButton1Down:connect(function()
  78. loadstring(game:HttpGet('https://jxnt-scripts.com/scripts/ninjalegends/NinjaLegendsV2.lua',true))()
  79. end)
  80.  
  81.  
  82. _3.Name = "3"
  83. _3.Parent = main
  84. _3.BackgroundColor3 = Color3.fromRGB(38, 255, 0)
  85. _3.Position = UDim2.new(0.142857149, 0, 0.355450243, 0)
  86. _3.Size = UDim2.new(0, 200, 0, 50)
  87. _3.Font = Enum.Font.SourceSans
  88. _3.Text = "NInja Legends v3 Mac"
  89. _3.TextColor3 = Color3.fromRGB(0, 0, 0)
  90. _3.TextScaled = true
  91. _3.TextSize = 14.000
  92. _3.TextWrapped = true
  93. _3.MouseButton1Down:connect(function()
  94. loadstring(game:HttpGet(("https://jxnt-scripts.com/scripts/ninjalegends/NinjaLegendsV1Mac.lua"),true))()
  95. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement