Advertisement
FLESHIE

A7PW

Nov 20th, 2019
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. local Epicninja = Instance.new("ScreenGui")
  2. local MainGui = Instance.new("Frame")
  3. local NL = Instance.new("TextButton")
  4. local TextLabel = Instance.new("TextLabel")
  5. local Close = Instance.new("TextButton")
  6. local open = Instance.new("Frame")
  7. local open_2 = Instance.new("TextButton")
  8.  
  9. --[[
  10. Properties:
  11. --]]
  12.  
  13. Epicninja.Name = "Epic ninja"
  14. Epicninja.Parent = game.CoreGui.Players.LocalPlayer:WaitForChild("PlayerGui")
  15.  
  16. MainGui.Active = true
  17. MainGui.Draggable = true
  18.  
  19. MainGui.Name = "MainGui"
  20. MainGui.Parent = Epicninja
  21. MainGui.BackgroundColor3 = Color3.new(0.886275, 0.647059, 0.254902)
  22. MainGui.Position = UDim2.new(0.229014605, 0, 0.057768926, 0)
  23. MainGui.Size = UDim2.new(0, 269, 0, 350)
  24. MainGui.Visible = false
  25.  
  26. NL.Name = "NL"
  27. NL.Parent = MainGui
  28. NL.BackgroundColor3 = Color3.new(0.886275, 0.647059, 0.254902)
  29. NL.Position = UDim2.new(0.133828998, 0, 0.408571422, 0)
  30. NL.Size = UDim2.new(0, 197, 0, 78)
  31. NL.Selected = true
  32. NL.Font = Enum.Font.SciFi
  33. NL.Text = "Ninja Legends epic gui"
  34. NL.TextColor3 = Color3.new(0, 0, 0)
  35. NL.TextSize = 19
  36. NL.TextWrapped = true
  37. NL.MouseButton1Click:connect(function()
  38. loadstring(game:HttpGet(('https://pastebin.com/raw/sjVGvJ1S'),true))()
  39.  
  40. print("Working")
  41. end)
  42.  
  43. TextLabel.Parent = MainGui
  44. TextLabel.BackgroundColor3 = Color3.new(0.886275, 0.647059, 0.254902)
  45. TextLabel.BorderSizePixel = 0
  46. TextLabel.Position = UDim2.new(0.0241207983, 0, 0.0198523924, 0)
  47. TextLabel.Size = UDim2.new(0, 255, 0, 62)
  48. TextLabel.Font = Enum.Font.Gotham
  49. TextLabel.Text = "Epic Ninja"
  50. TextLabel.TextColor3 = Color3.new(1, 0.792157, 0.435294)
  51. TextLabel.TextSize = 45
  52.  
  53. Close.Name = "Close"
  54. Close.Parent = MainGui
  55. Close.BackgroundColor3 = Color3.new(0.886275, 0.647059, 0.254902)
  56. Close.BorderSizePixel = 0
  57. Close.Position = UDim2.new(0.866171002, 0, 0.0198523812, 0)
  58. Close.Size = UDim2.new(0, 28, 0, 21)
  59. Close.Font = Enum.Font.SourceSans
  60. Close.Text = "X"
  61. Close.TextColor3 = Color3.new(0, 0, 0)
  62. Close.TextSize = 20
  63. Close.MouseButton1Click:connect(function()
  64. MainGui.Visible = false
  65. oepngui.Visible = true
  66. end)
  67.  
  68. open.Name = "open"
  69. open.Parent = Epicninja
  70. open.BackgroundColor3 = Color3.new(1, 1, 1)
  71. open.Position = UDim2.new(0.855839431, 0, 0.729083657, 0)
  72. open.Size = UDim2.new(0, 149, 0, 45)
  73.  
  74. open_2.Name = "open"
  75. open_2.Parent = open
  76. open_2.BackgroundColor3 = Color3.new(1, 1, 1)
  77. open_2.Position = UDim2.new(-0.342281878, 0, 0, 0)
  78. open_2.Size = UDim2.new(0, 200, 0, 50)
  79. open_2.Font = Enum.Font.SourceSans
  80. open_2.Text = "open this trash"
  81. open_2.TextColor3 = Color3.new(0, 0, 0)
  82. open_2.TextSize = 20
  83. open.MouseButton1Click:connect(function(
  84. MainGui.Visible = true
  85. open.Visible = false
  86. end)
  87.  
  88. print("Working")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement