Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. -- CREDITS:
  2. MINI LOAD SCRIPT - corehemid (discord:la3.SK1#7505)
  3. NINJA LEGENDS GUI - UNDEFINED66 (V3RMILLION.NET)
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local main = Instance.new("Frame")
  7. local load = Instance.new("TextButton")
  8. local info = Instance.new("TextLabel")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. main.Name = "main"
  15. main.Parent = ScreenGui
  16. main.BackgroundColor3 = Color3.fromRGB(57, 57, 57)
  17. main.Position = UDim2.new(0, 0, 0.876190484, 0)
  18. main.Size = UDim2.new(0, 136, 0, 78)
  19.  
  20. load.Name = "load"
  21. load.Parent = main
  22. load.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  23. load.Position = UDim2.new(0.132352889, 0, 0.512820542, 0)
  24. load.Size = UDim2.new(0, 100, 0, 24)
  25. load.Font = Enum.Font.GothamBold
  26. load.Text = "Load script"
  27. load.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. load.TextSize = 14.000
  29. load.MouseButton1Down:connect(function()
  30. loadstring(game:HttpGet('https://pastebin.com/raw/L7f9GNQG',true))()
  31. end)
  32.  
  33. info.Name = "info"
  34. info.Parent = main
  35. info.BackgroundColor3 = Color3.fromRGB(57, 57, 57)
  36. info.Size = UDim2.new(0, 136, 0, 25)
  37. info.Font = Enum.Font.GothamBold
  38. info.Text = "Ninja Legends GUI"
  39. info.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. info.TextSize = 14.000
  41.  
  42. --SCRIPTS
  43. main.Active = true
  44. main.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement