Advertisement
Guest User

GrabKnife v3

a guest
Mar 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. me = game.Players.ScriptMasterCZ
  2.  
  3. char = me.Character
  4.  
  5. selected = false
  6.  
  7. attacking = false
  8.  
  9. hurt = false
  10.  
  11. grabbed = nil
  12.  
  13. mode = "drop"
  14.  
  15. bloodcolors = {"Really red", "Bright red"}
  16.  
  17.  
  18.  
  19. function prop(part, parent, collide, tran, ref, x, y, z, color, anchor, form)
  20.  
  21. part.Parent = parent
  22.  
  23. part.formFactor = form
  24.  
  25. part.CanCollide = collide
  26.  
  27. part.Transparency = tran
  28.  
  29. part.Reflectance = ref
  30.  
  31. part.Size = Vector3.new(x,y,z)
  32.  
  33. part.BrickColor = BrickColor.new(color)
  34.  
  35. part.TopSurface = 0
  36.  
  37. part.BottomSurface = 0
  38.  
  39. part.Anchored = anchor
  40.  
  41. part.Locked = true
  42.  
  43. part:BreakJoints()
  44.  
  45. end
  46.  
  47.  
  48. function weld(w, p, p1, a, b, c, x, y, z)
  49.  
  50. w.Parent = p
  51.  
  52. w.Part0 = p
  53.  
  54. w.Part1 = p1
  55.  
  56. w.C1 = CFrame.fromEulerAnglesXYZ(a,b,c) * CFrame.new(x,y,z)
  57.  
  58. end
  59.  
  60.  
  61. function mesh(mesh, parent, x, y, z, type)
  62.  
  63. mesh.Parent = parent
  64.  
  65. mesh.Scale = Vector3.new(x, y, z)
  66.  
  67. mesh.MeshType = type
  68.  
  69. end
  70.  
  71.  
  72. function remgui()
  73.  
  74. for _,v in pairs(me.PlayerGui:GetChildren()) do
  75.  
  76. if v.Name == "Modeshow" then
  77.  
  78. v:remove()
  79.  
  80. end
  81.  
  82. end
  83.  
  84. end
  85.  
  86.  
  87. function inform(text,delay)
  88.  
  89. remgui()
  90.  
  91. local sc = Instance.new("ScreenGui")
  92.  
  93. sc.Parent = me.PlayerGui
  94.  
  95. sc.Name = "Modeshow"
  96.  
  97. local bak = Instance.new("Frame",sc)
  98.  
  99. bak.BackgroundColor3 = Color3.new(1,1,1)
  100.  
  101. bak.Size = UDim2.new(0.94,0,0.1,0)
  102.  
  103. bak.Position = UDim2.new(0.03,0,0.037,0)
  104.  
  105. bak.BorderSizePixel = 0
  106.  
  107. local gi = Instance.new("TextLabel",sc)
  108.  
  109. gi.Size = UDim2.new(0.92,0,0.09,0)
  110.  
  111. gi.BackgroundColor3 = Color3.new(0,0,0)
  112.  
  113. gi.Position = UDim2.new(0.04,0,0.042,0)
  114.  
  115. gi.TextColor3 = Color3.new(1,1,1)
  116.  
  117. gi.FontSize = "Size12"
  118.  
  119. gi.Text = text
  120.  
  121. coroutine.resume(coroutine.create(function()
  122.  
  123. wait(delay)
  124.  
  125. sc:remove()
  126.  
  127. end))
  128.  
  129. endme = game.Players.djface203
  130.  
  131. char = me.Character
  132.  
  133. selected = false
  134.  
  135. attacking = false
  136.  
  137. hurt = false
  138.  
  139. grabbed = nil
  140.  
  141. mode = "drop"
  142.  
  143. bloodcolors = {"Really red", "Bright red"}
  144.  
  145.  
  146.  
  147. function prop(part, parent, collide, tran, ref, x, y, z, color, anchor, form)
  148.  
  149. part.Parent = parent
  150.  
  151. part.formFactor = form
  152.  
  153. part.CanCollide = collide
  154.  
  155. part.Transparency = tran
  156.  
  157. part.Reflectance = ref
  158.  
  159. part.Size = Vector3.new(x,y,z)
  160.  
  161. part.BrickColor = BrickColor.new(color)
  162.  
  163. part.TopSurface = 0
  164.  
  165. part.BottomSurface = 0
  166.  
  167. part.Anchored = anchor
  168.  
  169. part.Locked = true
  170.  
  171. part:BreakJoints()
  172.  
  173. end
  174.  
  175.  
  176. function weld(w, p, p1, a, b, c, x, y, z)
  177.  
  178. w.Parent = p
  179.  
  180. w.Part0 = p
  181.  
  182. w.Part1 = p1
  183.  
  184. w.C1 = CFrame.fromEulerAnglesXYZ(a,b,c) * CFrame.new(x,y,z)
  185.  
  186. end
  187.  
  188.  
  189. function mesh(mesh, parent, x, y, z, type)
  190.  
  191. mesh.Parent = parent
  192.  
  193. mesh.Scale = Vector3.new(x, y, z)
  194.  
  195. mesh.MeshType = type
  196.  
  197. end
  198.  
  199.  
  200. function remgui()
  201.  
  202. for _,v in pairs(me.PlayerGui:GetChildren()) do
  203.  
  204. if v.Name == "Modeshow" then
  205.  
  206. v:remove()
  207.  
  208. end
  209.  
  210. end
  211.  
  212. end
  213.  
  214.  
  215. function inform(text,delay)
  216.  
  217. remgui()
  218.  
  219. local sc = Instance.new("ScreenGui")
  220.  
  221. sc.Parent = me.PlayerGui
  222.  
  223. sc.Name = "Modeshow"
  224.  
  225. local bak = Instance.new("Frame",sc)
  226.  
  227. bak.BackgroundColor3 = Color3.new(1,1,1)
  228.  
  229. bak.Size = UDim2.new(0.94,0,0.1,0)
  230.  
  231. bak.Position = UDim2.new(0.03,0,0.037,0)
  232.  
  233. bak.BorderSizePixel = 0
  234.  
  235. local gi = Instance.new("TextLabel",sc)
  236.  
  237. gi.Size = UDim2.new(0.92,0,0.09,0)
  238.  
  239. gi.BackgroundColor3 = Color3.new(0,0,0)
  240.  
  241. gi.Position = UDim2.new(0.04,0,0.042,0)
  242.  
  243. gi.TextColor3 = Color3.new(1,1,1)
  244.  
  245. gi.FontSize = "Size12"
  246.  
  247. gi.Text = text
  248.  
  249. coroutine.resume(coroutine.create(function()
  250.  
  251. wait(delay)
  252.  
  253. sc:remove()
  254.  
  255. end))
  256.  
  257. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement