Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 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 load = Instance.new("TextButton")
  9. local info = Instance.new("TextLabel")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(57, 57, 57)
  18. main.Position = UDim2.new(0, 0, 0.876190484, 0)
  19. main.Size = UDim2.new(0, 136, 0, 78)
  20.  
  21. load.Name = "load"
  22. load.Parent = main
  23. load.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  24. load.Position = UDim2.new(0.132352889, 0, 0.512820542, 0)
  25. load.Size = UDim2.new(0, 100, 0, 24)
  26. load.Font = Enum.Font.GothamBold
  27. load.Text = "Load script"
  28. load.TextColor3 = Color3.fromRGB(0, 0, 0)
  29. load.TextSize = 14.000
  30. load.MouseButton1Down:connect(function()
  31. loadstring(game:HttpGet('https://pastebin.com/raw/L7f9GNQG',true))()
  32. end)
  33.  
  34. info.Name = "info"
  35. info.Parent = main
  36. info.BackgroundColor3 = Color3.fromRGB(57, 57, 57)
  37. info.Size = UDim2.new(0, 136, 0, 25)
  38. info.Font = Enum.Font.GothamBold
  39. info.Text = "Ninja Legends GUI"
  40. info.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. info.TextSize = 14.000
  42.  
  43. --SCRIPTS
  44. main.Active = true
  45. main.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement