Advertisement
Anoying

Samurai one shot

Jun 12th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.41 KB | None | 0 0
  1. local Dungeon = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local walkspeed = Instance.new("TextButton")
  4. local onehit1 = Instance.new("TextButton")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextLabel_2 = Instance.new("TextLabel")
  7. local close = Instance.new("TextButton")
  8. local noclip = Instance.new("TextButton")
  9. local onehit2 = Instance.new("TextButton")
  10. --Properties:
  11. Dungeon.Name = "Dungeon"
  12. Dungeon.Parent = game.CoreGui
  13. Dungeon.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. main.Name = "main"
  16. main.Parent = Dungeon
  17. main.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  18. main.Position = UDim2.new(0.0190677941, 0, 0.475968987, 0)
  19. main.Size = UDim2.new(0, 206, 0, 213)
  20.  
  21. walkspeed.Name = "walkspeed"
  22. walkspeed.Parent = main
  23. walkspeed.BackgroundColor3 = Color3.new(0, 0, 1)
  24. walkspeed.Position = UDim2.new(0.126213595, 0, 0.164319247, 0)
  25. walkspeed.Size = UDim2.new(0, 160, 0, 21)
  26. walkspeed.Font = Enum.Font.SourceSans
  27. walkspeed.Text = "Walk Speed"
  28. walkspeed.TextColor3 = Color3.new(0, 0, 0)
  29. walkspeed.TextSize = 14
  30. walkspeed.MouseButton1Down:connect(function()
  31. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 50
  32. end)
  33.  
  34. onehit1.Name = "onehit1"
  35. onehit1.Parent = main
  36. onehit1.BackgroundColor3 = Color3.new(0, 0, 1)
  37. onehit1.Position = UDim2.new(0.121359229, 0, 0.507042289, 0)
  38. onehit1.Size = UDim2.new(0, 160, 0, 22)
  39. onehit1.Font = Enum.Font.SourceSans
  40. onehit1.Text = "One Hit Samurai"
  41. onehit1.TextColor3 = Color3.new(0, 0, 0)
  42. onehit1.TextSize = 14
  43. onehit1.MouseButton1Down:connect(function()
  44. local name = "Samurai Swordsman";
  45. local function Modify(part)
  46. part.Head:Destroy()
  47. end
  48.  
  49. local function recursive(obj)
  50. for _, child in pairs(obj:GetChildren()) do
  51. if (child.Name == name) then
  52. Modify(child);
  53. end
  54. recursive(child);
  55. end
  56. end
  57. recursive(workspace);
  58. end)
  59.  
  60. TextLabel.Parent = main
  61. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  62. TextLabel.Position = UDim2.new(-0.0376067311, 0, -0.0614352711, 0)
  63. TextLabel.Size = UDim2.new(0, 221, 0, 35)
  64. TextLabel.Font = Enum.Font.SourceSans
  65. TextLabel.Text = "Dungeon Quest Gui's"
  66. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  67. TextLabel.TextSize = 14
  68.  
  69. TextLabel_2.Parent = TextLabel
  70. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  71. TextLabel_2.Position = UDim2.new(-0.00125388801, 0, 5.68571472, 0)
  72. TextLabel_2.Size = UDim2.new(0, 221, 0, 33)
  73. TextLabel_2.Font = Enum.Font.SourceSans
  74. TextLabel_2.Text = "Gui By Kiệt Lewis"
  75. TextLabel_2.TextColor3 = Color3.new(1, 0, 0)
  76. TextLabel_2.TextSize = 14
  77.  
  78. close.Name = "close"
  79. close.Parent = TextLabel_2
  80. close.BackgroundColor3 = Color3.new(1, 1, 1)
  81. close.Position = UDim2.new(0.87378639, 0, -5.75032043, 0)
  82. close.Size = UDim2.new(0, 20, 0, 17)
  83. close.Font = Enum.Font.SourceSans
  84. close.Text = "X"
  85. close.TextColor3 = Color3.new(0, 0, 0)
  86. close.TextSize = 14
  87.  
  88. noclip.Name = "noclip"
  89. noclip.Parent = main
  90. noclip.BackgroundColor3 = Color3.new(0, 0, 1)
  91. noclip.Position = UDim2.new(0.121359222, 0, 0.671361506, 0)
  92. noclip.Size = UDim2.new(0, 161, 0, 24)
  93. noclip.Font = Enum.Font.SourceSans
  94. noclip.Text = "Noclip"
  95. noclip.TextColor3 = Color3.new(0, 0, 0)
  96. noclip.TextSize = 14
  97. noclip.MouseButton1Down:connect(function()
  98. noclip = true
  99. game:GetService('RunService').Stepped:connect(function()
  100. if noclip then
  101. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  102. end
  103. end)
  104. plr = game.Players.LocalPlayer
  105. mouse = plr:GetMouse()
  106. mouse.KeyDown:connect(function(key)
  107.  
  108. if key == "o" then
  109. noclip = not noclip
  110. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  111. end
  112. end)
  113. print('Thanks for Use')
  114. print('Thanks very much')
  115. end)
  116.  
  117. onehit2.Name = "onehit2"
  118. onehit2.Parent = main
  119. onehit2.BackgroundColor3 = Color3.new(0, 0, 1)
  120. onehit2.Position = UDim2.new(0.121359222, 0, 0.328236043, 0)
  121. onehit2.Size = UDim2.new(0, 161, 0, 24)
  122. onehit2.Font = Enum.Font.SourceSans
  123. onehit2.Text = "One Hit Shuriken"
  124. onehit2.TextColor3 = Color3.new(0, 0, 0)
  125. onehit2.TextSize = 14
  126. onehit2.MouseButton1Down:connect(function()
  127. local nama = "Shuriken Thrower";
  128. local function Modify(part)
  129. part.Head:Destroy()
  130. end
  131.  
  132. local function recursive(obj)
  133. for _, child in pairs(obj:GetChildren()) do
  134. if (child.Name == nama) then
  135. Modify(child);
  136. end
  137. recursive(child);
  138. end
  139. end
  140. recursive(workspace);
  141.  
  142. end)
  143. -- Scripts:
  144. game.ReplicatedStorage.remotes.changeStartValue:FireServer()<br>noclip = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement