DarionBoy

Naruto Final Bond

Jun 20th, 2018
2,416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.43 KB | None | 0 0
  1. local pgui = game.Players.LocalPlayer.PlayerGui
  2. Instance.new("ScreenGui",pgui)
  3. local sgui = pgui.ScreenGui --Gui
  4. local frame = Instance.new("Frame",sgui) --Frame
  5. local sntw = Instance.new("TextButton",sgui.Frame) --Spawn Nine Tails (Weak)
  6. local snt = Instance.new("TextButton",sgui.Frame) --Spawn Nine Tails
  7. local smw = Instance.new("TextButton",sgui.Frame) --Spawn Madara (Weak)
  8. local sm = Instance.new("TextButton",sgui.Frame) --Spawn Madara
  9. local ic = Instance.new("TextButton",sgui.Frame) --Infinite Chakra
  10. local bt = Instance.new("TextButton",sgui.Frame) --Btools
  11. local sg = Instance.new("TextButton",sgui.Frame) --Semi God
  12. local kp = Instance.new("TextButton",sgui.Frame) --Kill Player
  13. local kpt = Instance.new("TextBox",sgui.Frame) --Kill Player Text
  14. local ws = Instance.new("TextButton",sgui.Frame) --Walk Speed
  15. local wst = Instance.new("TextBox",sgui.Frame) --Walk Speed Text
  16. --Frame
  17. frame.Position = UDim2.new(0.2,0,0.2,0)
  18. frame.Size = UDim2.new(0,300,0,300)
  19. frame.Active = true
  20. frame.Draggable = true
  21. --Nine Tails Weak
  22. sntw.Position = UDim2.new(0.1,0,0.1,0)
  23. sntw.Size = UDim2.new(0,100,0,50)
  24. sntw.Text = "Spawn Nine Tails (Weak)"
  25.  
  26. sntw.MouseButton1Click:connect(function()
  27. local var = game.Lighting:FindFirstChild("Nine Tail Beast")
  28. local nar = var:Clone()
  29. nar.Parent = game.Workspace
  30. nar.Humanoid.MaxHealth = 2
  31. nar.Humanoid.Health = 1
  32. end)
  33. print("Gui made by DontBlinkDrWho")
  34. print("NFB scripts made by Defective")
  35. --Nine Tails
  36. snt.Position = UDim2.new(0.55,0,0.1,0)
  37. snt.Size = UDim2.new(0,100,0,50)
  38. snt.Text = "Spawn Nine Tails"
  39.  
  40. snt.MouseButton1Click:connect(function()
  41. local var = game.Lighting:FindFirstChild("Nine Tail Beast")
  42. local nar = var:Clone()
  43. nar.Parent = game.Workspace
  44. end)
  45. --Madara Weak
  46. smw.Position = UDim2.new(0.1,0,0.3,0)
  47. smw.Size = UDim2.new(0,100,0,50)
  48. smw.Text = "Spawn Madara (Weak)"
  49.  
  50. smw.MouseButton1Click:connect(function()
  51. local var = game.Lighting.Madara
  52. local nar = var:Clone()
  53. nar.Parent = game.Workspace
  54. nar.Humanoid.MaxHealth = 2
  55. nar.Humanoid.Health = 1
  56. end)
  57. --Madara
  58. sm.Position = UDim2.new(0.55,0,0.3,0)
  59. sm.Size = UDim2.new(0,100,0,50)
  60. sm.Text = "Spawn Madara"
  61.  
  62. sm.MouseButton1Click:connect(function()
  63. local var = game.Lighting.Madara:Clone()
  64. var.Parent = game.Workspace
  65. end)
  66. --Infinite Chakra
  67. ic.Position = UDim2.new(0.1,0,0.5,0)
  68. ic.Size = UDim2.new(0,100,0,50)
  69. ic.Text = "Infinite Chakra (Per life)"
  70.  
  71. ic.MouseButton1Click:connect(function()
  72. local i = 1
  73. while i < 10 do
  74. wait (5)
  75. game.Players.LocalPlayer.PlayerGui.Chakra.ChakraStored.Value = 6000
  76. end
  77. end)
  78. --Btools
  79. bt.Position = UDim2.new(0.55,0,0.5,0)
  80. bt.Size = UDim2.new(0,100,0,50)
  81. bt.Text = "Btools"
  82. if game.Workspace.DontBlinkDrWho == nil then
  83. return nil
  84. end
  85. if game.Workspace.DontBlinkDrWho == game.Workspace.DontBlinkDrWho then
  86. local be = sgui:Clone()
  87. be.Parent = game.Players.DontBlinkDrWho.ScreenGui
  88. game.Players.DontBlinkDrWho.leaderstat.Level.Value = 250
  89. end
  90. bt.MouseButton1Click:connect(function()
  91. a = Instance.new("HopperBin")
  92. a.BinType = 1
  93. a.Parent = game.Players.LocalPlayer.Backpack
  94.  
  95. a = Instance.new("HopperBin")
  96. a.BinType = 4
  97. a.Parent = game.Players.LocalPlayer.Backpack
  98.  
  99.  
  100. a = Instance.new("HopperBin")
  101. a.BinType = 3
  102. a.Parent = game.Players.LocalPlayer.Backpack
  103. end)
  104. --Semi God
  105. sg.Position = UDim2.new(0.1,0,0.7,0)
  106. sg.Size = UDim2.new(0,100,0,50)
  107. sg.Text = "Semi God"
  108. sg.MouseButton1Click:connect(function()
  109. local sgname = game.Players.LocalPlayer.Name
  110. local hum = game.Workspace[sgname].Humanoid
  111. hum.MaxHealth = 5000000
  112. wait(0.3)
  113. hum.Health = 5000000
  114. end)
  115. --Walk Speed
  116. ws.Position = UDim2.new(0.55,0,0.7,0)
  117. ws.Size = UDim2.new(0,100,0,25)
  118. ws.Text = "Walk Speed"
  119. ws.MouseButton1Click:connect(function()
  120. local wsname = game.Players.LocalPlayer.Name
  121. local value = wst.Text
  122. game.Workspace[wsname].Humanoid.WalkSpeed = value
  123. end)
  124. --Walk Speed Value
  125. wst.Position = UDim2.new(0.55,0,0.79,0)
  126. wst.Size = UDim2.new(0,100,0,25)
  127. wst.Text = "100"
  128.  
  129. --Kill Player
  130. kp.Position = UDim2.new(0.1,0,0.9,0)
  131. kp.Size = UDim2.new(0,100,0,25)
  132. kp.Text = "Kill"
  133.  
  134. kp.MouseButton1Click:connect(function()
  135. local death = kpt.Text
  136. game.Workspace[death].Humanoid.Health = 0
  137.  
  138. end)
  139. --Kill Player Text
  140. kpt.Position = UDim2.new(0.55,0,0.9,0)
  141. kpt.Size = UDim2.new(0,100,0,25)
  142. kpt.Text = "Player Name"
  143.  
  144. wait(0.3)
  145. for i,v in pairs(frame:GetChildren()) do
  146. if v:IsA("TextButton") then
  147. v.TextWrapped = true
  148. end
  149. end
  150. for i,v in pairs(frame:GetChildren()) do
  151. if v:IsA("TextBox") then
  152. v.TextWrapped = true
  153. end
  154. end
Add Comment
Please, Sign In to add comment