Advertisement
ItzDan

NP V2

Feb 25th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local c = Player.Character
  3. if not c or not c.Parent then
  4. c = Player.CharacterAdded:wait()
  5. end
  6.  
  7. gui = Instance.new("ScreenGui",game.CoreGui)
  8. gui.ResetOnSpawn = false
  9. gui.Name = "PugzHub"
  10.  
  11. local frame = Instance.new("Frame",gui)
  12. frame.BackgroundColor3 = Color3.new(58/255,58/255,58/255)
  13. frame.BorderColor3 = Color3.new(0,0,0)
  14. frame.BorderSizePixel = 2
  15. frame.Size = UDim2.new(0,300,0,200)
  16. frame.Position = UDim2.new(.655,160,.4,130)
  17. frame.Active = true
  18. frame.Draggable = true
  19. frame.Transparency = 0.5
  20.  
  21. local FGb = Instance.new("TextButton",frame)
  22. FGb.BackgroundColor3 = Color3.new(0,70/255,1)
  23. FGb.BorderColor3 = Color3.new(0,0,0)
  24. FGb.BorderSizePixel = 2
  25. FGb.Size = UDim2.new(.3,0,.1,0)
  26. FGb.Position = UDim2.new(.35,0,.1,-10)
  27. FGb.Text = "FE God Mode"
  28. FGb.TextColor3 = Color3.new(255,255,255)
  29. FGb.TextScaled = true
  30.  
  31. local Eb = Instance.new("TextButton",frame)
  32. Eb.BackgroundColor3 = Color3.new(123/255,0,0)
  33. Eb.BorderColor3 = Color3.new(0,0,0)
  34. Eb.BorderSizePixel = 2
  35. Eb.Size = UDim2.new(.1,0,0.07,.0)
  36. Eb.Position = UDim2.new(.38,22,1.38,-93)
  37. Eb.Text = "X"
  38. Eb.TextColor3 = Color3.new(255,255,255)
  39. Eb.TextScaled = true
  40.  
  41. FGb.MouseButton1Click:connect(function()
  42. loadstring(Raindrop:DownloadString('http://pastebin.com/raw/gkhGsNZY'))()
  43. end)
  44.  
  45. Eb.MouseButton1Click:connect(function()
  46. game.CoreGui.PugzHub:Remove()
  47. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement