Advertisement
VinceTheGod

Nino Loader

Feb 18th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local TextButton = Instance.new("TextButton")
  3. local TextLabel = Instance.new("TextLabel")
  4.  
  5.  
  6. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  7. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8.  
  9. TextButton.Parent = ScreenGui
  10. TextButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  11. TextButton.Position = UDim2.new(0.419636369, 0, 0.458230972, 0)
  12. TextButton.Size = UDim2.new(0, 200, 0, 91)
  13. TextButton.Font = Enum.Font.SourceSansSemibold
  14. TextButton.Text = "Start"
  15. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  16. TextButton.TextScaled = true
  17. TextButton.TextSize = 14.000
  18. TextButton.TextWrapped = true
  19.  
  20. TextLabel.Parent = ScreenGui
  21. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. TextLabel.BackgroundTransparency = 1.000
  23. TextLabel.Position = UDim2.new(0.00145454542, 0, 0.00491400482, 0)
  24. TextLabel.Size = UDim2.new(0, 1029, 0, 246)
  25. TextLabel.Font = Enum.Font.SourceSansItalic
  26. TextLabel.Text = "Ninohub"
  27. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. TextLabel.TextScaled = true
  29. TextLabel.TextSize = 14.000
  30. TextLabel.TextWrapped = true
  31.  
  32.  
  33. local function TAGVVR_fake_script()
  34. local script = Instance.new('LocalScript', TextButton)
  35.  
  36. script.Parent.MouseButton1Click:connect(function()
  37. loadstring(game:HttpGetAsync("https://pastebin.com/HzEVhas7"))()
  38. script.Parent:Destroy()
  39. script.Parent.Parent.TextLabel:Destroy()
  40. end)
  41. end
  42. coroutine.wrap(TAGVVR_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement