Advertisement
Guest User

Hubbian - Roblox Beta Build GUI V.3

a guest
Sep 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 82.90 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local HubbianV03 = Instance.new("ScreenGui")
  5. local LoginFrame = Instance.new("Frame")
  6. local Username = Instance.new("TextBox")
  7. local Password = Instance.new("TextBox")
  8. local Login = Instance.new("TextButton")
  9. local Delete = Instance.new("TextButton")
  10. local TitleLogin = Instance.new("TextLabel")
  11. local MainFrame = Instance.new("Frame")
  12. local DeleteMain = Instance.new("TextButton")
  13. local TextLabel = Instance.new("TextLabel")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15. local ScriptButton = Instance.new("TextButton")
  16. local WIP = Instance.new("TextButton")
  17. local TextLabel_3 = Instance.new("TextLabel")
  18. local DescriptionMain = Instance.new("TextButton")
  19. local ScriptFrame = Instance.new("Frame")
  20. local DeleteScript = Instance.new("TextButton")
  21. local TextLabel_4 = Instance.new("TextLabel")
  22. local Noobbat = Instance.new("TextButton")
  23. local HubbianV02 = Instance.new("TextButton")
  24. --Properties:
  25. HubbianV03.Name = "HubbianV.03"
  26. HubbianV03.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  27.  
  28. LoginFrame.Name = "LoginFrame"
  29. LoginFrame.Parent = HubbianV03
  30. LoginFrame.Active = true
  31. LoginFrame.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  32. LoginFrame.BorderColor3 = Color3.new(0.258824, 0.403922, 0.509804)
  33. LoginFrame.BorderSizePixel = 5
  34. LoginFrame.Position = UDim2.new(0.87625289, 0, 0.321515888, 0)
  35. LoginFrame.Selectable = true
  36. LoginFrame.Size = UDim2.new(0, 144, 0, 250)
  37.  
  38. Username.Name = "Username"
  39. Username.Parent = LoginFrame
  40. Username.BackgroundColor3 = Color3.new(0.317647, 0.317647, 0.317647)
  41. Username.BorderColor3 = Color3.new(0, 0, 0)
  42. Username.BorderSizePixel = 3
  43. Username.Position = UDim2.new(0.0423182249, 0, 0.218092903, 0)
  44. Username.Size = UDim2.new(0, 132, 0, 34)
  45. Username.Font = Enum.Font.Fantasy
  46. Username.PlaceholderColor3 = Color3.new(1, 1, 1)
  47. Username.Text = "Username"
  48. Username.TextColor3 = Color3.new(1, 1, 1)
  49. Username.TextSize = 30
  50.  
  51. Password.Name = "Password"
  52. Password.Parent = LoginFrame
  53. Password.BackgroundColor3 = Color3.new(0.317647, 0.317647, 0.317647)
  54. Password.BorderColor3 = Color3.new(0, 0, 0)
  55. Password.BorderSizePixel = 3
  56. Password.Position = UDim2.new(0.0423182249, 0, 0.403217584, 0)
  57. Password.Size = UDim2.new(0, 132, 0, 34)
  58. Password.Font = Enum.Font.Fantasy
  59. Password.PlaceholderColor3 = Color3.new(1, 1, 1)
  60. Password.Text = "Password"
  61. Password.TextColor3 = Color3.new(1, 1, 1)
  62. Password.TextSize = 30
  63.  
  64. Login.Name = "Login"
  65. Login.Parent = LoginFrame
  66. Login.BackgroundColor3 = Color3.new(0.517647, 0.517647, 0.517647)
  67. Login.BorderColor3 = Color3.new(0.509804, 0.796079, 1)
  68. Login.BorderSizePixel = 3
  69. Login.Position = UDim2.new(0.166832149, 0, 0.630679786, 0)
  70. Login.Size = UDim2.new(0, 95, 0, 35)
  71. Login.Font = Enum.Font.SourceSans
  72. Login.Text = "Login"
  73. Login.TextColor3 = Color3.new(1, 1, 1)
  74. Login.TextSize = 30
  75.  
  76. Login.MouseButton1Down:connect(function()
  77.  
  78. if Username.Text == "AdminMod" and Password.Text == "ModAdmin" then
  79. MainFrame.Visible = true
  80. LoginFrame.Visible = false
  81. end
  82.  
  83. end)
  84.  
  85. Delete.Name = "Delete"
  86. Delete.Parent = LoginFrame
  87. Delete.BackgroundColor3 = Color3.new(0, 0, 0)
  88. Delete.BorderColor3 = Color3.new(0.258824, 0.403922, 0.509804)
  89. Delete.BorderSizePixel = 3
  90. Delete.Position = UDim2.new(0.789401889, 0, 0.880136847, 0)
  91. Delete.Size = UDim2.new(0, 30, 0, 30)
  92. Delete.Font = Enum.Font.SourceSans
  93. Delete.Text = "X"
  94. Delete.TextColor3 = Color3.new(1, 1, 1)
  95. Delete.TextSize = 30
  96.  
  97. Delete.MouseButton1Down:connect(function()
  98. LoginFrame:Destroy()
  99. end)
  100.  
  101. TitleLogin.Name = "TitleLogin"
  102. TitleLogin.Parent = LoginFrame
  103. TitleLogin.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  104. TitleLogin.BorderColor3 = Color3.new(0.0470588, 0.6, 0.396078)
  105. TitleLogin.BorderSizePixel = 3
  106. TitleLogin.Position = UDim2.new(0.00298517942, 0, -0.000811725855, 0)
  107. TitleLogin.Size = UDim2.new(0, 144, 0, 35)
  108. TitleLogin.Font = Enum.Font.SourceSans
  109. TitleLogin.Text = "Hubbian V.0.3"
  110. TitleLogin.TextColor3 = Color3.new(1, 1, 1)
  111. TitleLogin.TextSize = 30
  112.  
  113. MainFrame.Name = "MainFrame"
  114. MainFrame.Parent = HubbianV03
  115. MainFrame.Active = true
  116. MainFrame.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  117. MainFrame.BorderColor3 = Color3.new(0.258824, 0.403922, 0.509804)
  118. MainFrame.BorderSizePixel = 5
  119. MainFrame.Position = UDim2.new(0.5070737, 0, 0.7347188, 0)
  120. MainFrame.Selectable = true
  121. MainFrame.Size = UDim2.new(0, 633, 0, 179)
  122. MainFrame.Visible = false
  123.  
  124. DeleteMain.Name = "DeleteMain"
  125. DeleteMain.Parent = MainFrame
  126. DeleteMain.BackgroundColor3 = Color3.new(0, 0, 0)
  127. DeleteMain.BorderColor3 = Color3.new(0.258824, 0.403922, 0.509804)
  128. DeleteMain.BorderSizePixel = 3
  129. DeleteMain.Position = UDim2.new(0.953125358, 0, 0.829857528, 0)
  130. DeleteMain.Size = UDim2.new(0, 30, 0, 30)
  131. DeleteMain.Font = Enum.Font.SourceSans
  132. DeleteMain.Text = "X"
  133. DeleteMain.TextColor3 = Color3.new(1, 1, 1)
  134. DeleteMain.TextSize = 30
  135.  
  136. DeleteMain.MouseButton1Down:connect(function()
  137. MainFrame:Destroy()
  138. end)
  139.  
  140. TextLabel.Parent = MainFrame
  141. TextLabel.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  142. TextLabel.BorderColor3 = Color3.new(0.0470588, 0.6, 0.396078)
  143. TextLabel.BorderSizePixel = 3
  144. TextLabel.Position = UDim2.new(0.0031595577, 0, 0, 0)
  145. TextLabel.Size = UDim2.new(0, 144, 0, 35)
  146. TextLabel.Font = Enum.Font.SourceSans
  147. TextLabel.Text = "Hubbian V.0.3"
  148. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  149. TextLabel.TextSize = 30
  150.  
  151. TextLabel_2.Parent = MainFrame
  152. TextLabel_2.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  153. TextLabel_2.BorderColor3 = Color3.new(0.00392157, 0.952941, 1)
  154. TextLabel_2.BorderSizePixel = 3
  155. TextLabel_2.Position = UDim2.new(0.364928901, 0, 0, 0)
  156. TextLabel_2.Size = UDim2.new(0, 377, 0, 35)
  157. TextLabel_2.Font = Enum.Font.SourceSans
  158. TextLabel_2.Text = "Hubbian Main Menu"
  159. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  160. TextLabel_2.TextSize = 30
  161.  
  162. ScriptButton.Name = "ScriptButton"
  163. ScriptButton.Parent = MainFrame
  164. ScriptButton.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  165. ScriptButton.BorderColor3 = Color3.new(0.623529, 0.0117647, 0.0705882)
  166. ScriptButton.BorderSizePixel = 2
  167. ScriptButton.Position = UDim2.new(0.0333412178, 0, 0.342462242, 0)
  168. ScriptButton.Size = UDim2.new(0, 133, 0, 30)
  169. ScriptButton.Font = Enum.Font.SciFi
  170. ScriptButton.Text = "Scripts"
  171. ScriptButton.TextColor3 = Color3.new(1, 1, 1)
  172. ScriptButton.TextSize = 25
  173.  
  174. ScriptButton.MouseButton1Down:connect(function()
  175. ScriptFrame.Visible = true
  176. end)
  177.  
  178. WIP.Name = "WIP"
  179. WIP.Parent = MainFrame
  180. WIP.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  181. WIP.BorderColor3 = Color3.new(0.623529, 0.0117647, 0.0705882)
  182. WIP.BorderSizePixel = 2
  183. WIP.Position = UDim2.new(0.0333412178, 0, 0.616205215, 0)
  184. WIP.Size = UDim2.new(0, 133, 0, 30)
  185. WIP.Font = Enum.Font.SciFi
  186. WIP.Text = "WIP"
  187. WIP.TextColor3 = Color3.new(1, 1, 1)
  188. WIP.TextSize = 25
  189.  
  190. TextLabel_3.Parent = MainFrame
  191. TextLabel_3.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  192. TextLabel_3.BorderColor3 = Color3.new(0, 0, 0)
  193. TextLabel_3.BorderSizePixel = 3
  194. TextLabel_3.Position = UDim2.new(0.320695102, 0, 0, 0)
  195. TextLabel_3.Size = UDim2.new(0, 1, 0, 179)
  196. TextLabel_3.Font = Enum.Font.SourceSans
  197. TextLabel_3.Text = " "
  198. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  199. TextLabel_3.TextSize = 30
  200.  
  201. DescriptionMain.Name = "DescriptionMain"
  202. DescriptionMain.Parent = MainFrame
  203. DescriptionMain.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  204. DescriptionMain.BorderColor3 = Color3.new(0.623529, 0.0117647, 0.0705882)
  205. DescriptionMain.BorderSizePixel = 2
  206. DescriptionMain.Position = UDim2.new(0.364928901, 0, 0.340782136, 0)
  207. DescriptionMain.Size = UDim2.new(0, 379, 0, 49)
  208. DescriptionMain.Font = Enum.Font.SciFi
  209. DescriptionMain.Text = "Scripts"
  210. DescriptionMain.TextColor3 = Color3.new(1, 1, 1)
  211. DescriptionMain.TextSize = 25
  212.  
  213. ScriptFrame.Name = "ScriptFrame"
  214. ScriptFrame.Parent = HubbianV03
  215. ScriptFrame.Active = true
  216. ScriptFrame.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  217. ScriptFrame.BorderColor3 = Color3.new(0.258824, 0.403922, 0.509804)
  218. ScriptFrame.BorderSizePixel = 5
  219. ScriptFrame.Position = UDim2.new(0.512285948, 0, 0.0330073349, 0)
  220. ScriptFrame.Selectable = true
  221. ScriptFrame.Size = UDim2.new(0, 633, 0, 157)
  222. ScriptFrame.Visible = false
  223.  
  224. DeleteScript.Name = "DeleteScript"
  225. DeleteScript.Parent = ScriptFrame
  226. DeleteScript.BackgroundColor3 = Color3.new(0, 0, 0)
  227. DeleteScript.BorderColor3 = Color3.new(0.258824, 0.403922, 0.509804)
  228. DeleteScript.BorderSizePixel = 3
  229. DeleteScript.Position = UDim2.new(0.953125358, 0, 0.810749233, 0)
  230. DeleteScript.Size = UDim2.new(0, 30, 0, 30)
  231. DeleteScript.Font = Enum.Font.SourceSans
  232. DeleteScript.Text = "X"
  233. DeleteScript.TextColor3 = Color3.new(1, 1, 1)
  234. DeleteScript.TextSize = 30
  235.  
  236. DeleteScript.MouseButton1Down:connect(function()
  237. ScriptFrame.Visible = false
  238. end)
  239.  
  240. TextLabel_4.Parent = ScriptFrame
  241. TextLabel_4.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  242. TextLabel_4.BorderColor3 = Color3.new(0.00392157, 0.952941, 1)
  243. TextLabel_4.BorderSizePixel = 3
  244. TextLabel_4.Position = UDim2.new(0.232227474, 0, 0, 0)
  245. TextLabel_4.Size = UDim2.new(0, 377, 0, 35)
  246. TextLabel_4.Font = Enum.Font.SourceSans
  247. TextLabel_4.Text = "Hubbian Script Tab - V.0.3 Beta"
  248. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  249. TextLabel_4.TextSize = 30
  250.  
  251. Noobbat.Name = "Noobbat"
  252. Noobbat.Parent = ScriptFrame
  253. Noobbat.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  254. Noobbat.BorderColor3 = Color3.new(0.227451, 0.854902, 0)
  255. Noobbat.BorderSizePixel = 2
  256. Noobbat.Position = UDim2.new(0.0222827662, 0, 0.344810724, 0)
  257. Noobbat.Size = UDim2.new(0, 133, 0, 30)
  258. Noobbat.Font = Enum.Font.SciFi
  259. Noobbat.Text = "Noobbat"
  260. Noobbat.TextColor3 = Color3.new(1, 1, 1)
  261. Noobbat.TextSize = 25
  262.  
  263. Noobbat.MouseButton1Down:connect(function()
  264. plr = game.Players.LocalPlayer
  265. repeat
  266. wait(0.4)
  267. until plr.Character
  268. chr = plr.Character
  269. human = chr:FindFirstChild("Humanoid")
  270. mouse = plr:GetMouse()
  271. cam = workspace.CurrentCamera
  272. selected = false
  273. equipd = false
  274. tors = chr.Torso
  275. rarm = chr["Right Arm"]
  276. larm = chr["Left Arm"]
  277. rleg = chr["Right Leg"]
  278. lleg = chr["Left Leg"]
  279. hrp = chr.HumanoidRootPart
  280. hed = chr.Head
  281. anim = human.Animator
  282. activu = false
  283. ragged = false
  284. batting = false
  285. Heartbeat = Instance.new("BindableEvent")
  286. Heartbeat.Name = "Heartbeat"
  287. Heartbeat.Parent = script
  288. frame = 0.03333333333333333
  289. tf = 0
  290. game:GetService("RunService").Heartbeat:connect(function(s, p)
  291. tf = tf + s
  292. if tf >= frame then
  293. for i = 1, math.floor(tf / frame) do
  294. Heartbeat:Fire()
  295. end
  296. tf = tf - frame * math.floor(tf / frame)
  297. end
  298. end)
  299. function swait(num)
  300. if num == 0 or num == nil then
  301. Heartbeat.Event:wait()
  302. else
  303. for i = 1, num do
  304. Heartbeat.Event:wait()
  305. end
  306. end
  307. end
  308. tool = Instance.new("Tool")
  309. tool.CanBeDropped = false
  310. tool.RequiresHandle = false
  311. tool.TextureId = "rbxassetid://291302154"
  312. tool.ToolTip = "NANI"
  313. tool.Name = "AAAAAAAAAAAAAA"
  314. tool.Parent = plr.Backpack
  315. modz = Instance.new("Model")
  316. modz.Name = "efx"
  317. modz.Parent = chr
  318. RSC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  319. RSC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  320. LSC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  321. LSC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  322. RHC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  323. RHC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  324. LHC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  325. RJC1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  326. LHC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  327. NC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  328. NC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  329. RJC0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  330. local nscale = Instance.new("NumberValue")
  331. nscale.Value = 1
  332. nscale.Parent = nil
  333. RightShoulderC0 = CFrame.new(1.5 * nscale.Value, 0.5 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  334. RightShoulderC1 = CFrame.new(0, 0.5 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  335. LeftShoulderC0 = CFrame.new(-1.5 * nscale.Value, 0.5 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  336. LeftShoulderC1 = CFrame.new(0, 0.5 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  337. RightHipC0 = CFrame.new(0.5 * nscale.Value, -1 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  338. RightHipC1 = CFrame.new(0, 1 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  339. LeftHipC0 = CFrame.new(-0.5 * nscale.Value, -1 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  340. LeftHipC1 = CFrame.new(0 * nscale.Value, 1 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  341. RootJointC0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  342. RootJointC1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  343. NeckC0 = CFrame.new(0, 1 * nscale.Value, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  344. NeckC1 = CFrame.new(0, -0.5 * nscale.Value, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  345. nscale.Changed:connect(function()
  346. RightShoulderC0 = CFrame.new(1.5 * nscale.Value, 0.5 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  347. RightShoulderC1 = CFrame.new(0, 0.5 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  348. LeftShoulderC0 = CFrame.new(-1.5 * nscale.Value, 0.5 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  349. LeftShoulderC1 = CFrame.new(0, 0.5 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  350. RightHipC0 = CFrame.new(0.5 * nscale.Value, -1 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  351. RightHipC1 = CFrame.new(0, 1 * nscale.Value, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  352. LeftHipC0 = CFrame.new(-0.5 * nscale.Value, -1 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  353. LeftHipC1 = CFrame.new(0 * nscale.Value, 1 * nscale.Value, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  354. RootJointC0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  355. RootJointC1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  356. NeckC0 = CFrame.new(0, 1 * nscale.Value, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  357. NeckC1 = CFrame.new(0, -0.5 * nscale.Value, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  358. end)
  359. RS = tors:FindFirstChild("Right Shoulder")
  360. LS = tors:FindFirstChild("Left Shoulder")
  361. RH = tors:FindFirstChild("Right Hip")
  362. LH = tors:FindFirstChild("Left Hip")
  363. RJ = hrp:FindFirstChild("RootJoint")
  364. N = tors:FindFirstChild("Neck")
  365. cf = CFrame.new
  366. ang = CFrame.Angles
  367. rd = math.rad
  368. rd2 = math.random
  369. function nooutline(p)
  370. p.TopSurface, p.BottomSurface, p.LeftSurface, p.RightSurface, p.FrontSurface, p.BottomSurface = 10, 10, 10, 10, 10, 10
  371. end
  372. function makepart(color, name, reflec, trans, mater, parnt, cfram)
  373. local port = Instance.new("Part")
  374. port.BrickColor = BrickColor.new(color)
  375. port.Name = name
  376. port.Transparency = trans
  377. nooutline(port)
  378. port.Reflectance = reflec
  379. port.Material = mater
  380. port.Anchored = false
  381. port.CanCollide = false
  382. port.Locked = true
  383. port.Size = Vector3.new(0.2, 0.2, 0.2)
  384. port.Parent = parnt
  385. return port
  386. end
  387. function makemesh(meshtype, scale, meshid, parent)
  388. local mes = Instance.new("SpecialMesh")
  389. mes.MeshType = meshtype
  390. mes.Scale = scale
  391. if meshtype == "FileMesh" then
  392. mes.MeshId = meshid
  393. end
  394. mes.Parent = parent
  395. return mes
  396. end
  397. function makeweld(parent, p0, p1, c0, c1)
  398. local wel = Instance.new("Weld")
  399. wel.Part0 = p0
  400. wel.Part1 = p1
  401. wel.C0 = c0
  402. if c1 ~= nil then
  403. wel.C1 = c1
  404. end
  405. wel.Parent = parent
  406. return wel
  407. end
  408. local lauf1 = Instance.new("Sound")
  409. lauf1.SoundId = "rbxassetid://137473066"
  410. lauf1.Volume = 1.5
  411. lauf1.Pitch = 2
  412. lauf1.Parent = hrp
  413. function lerpz(joint, prop, cfrmz, alp)
  414. joint[prop] = joint[prop]:lerp(cfrmz, alp)
  415. end
  416. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  417. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  418. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  419. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  420. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  421. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  422. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  423. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  424. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  425. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  426. function resetlerp()
  427. RJ.C0 = RJC0
  428. RJ.C1 = RJC1
  429. N.C0 = NC0
  430. N.C1 = NC1
  431. RS.C0 = RSC0
  432. RS.C1 = RSC1
  433. LS.C0 = LSC0
  434. LS.C1 = LSC1
  435. RH.C0 = RHC0
  436. RH.C1 = RHC1
  437. LH.C0 = LHC0
  438. LH.C1 = LHC1
  439. end
  440. function test()
  441. if selected == false or activu == true then
  442. return
  443. end
  444. if ragged == false then
  445. ragged = true
  446. human.PlatformStand = true
  447. if rarm and tors:FindFirstChild("Right Shoulder") then
  448. tors:FindFirstChild("Right Shoulder"):Destroy()
  449. makegloo(tors, RightShoulderC0, RightShoulderC1, tors, rarm, "Right Shoulder")
  450. maketouchy(rarm, rarm, CFrame.new(0, 0.5, 0))
  451. end
  452. if larm and tors:FindFirstChild("Left Shoulder") then
  453. tors:FindFirstChild("Left Shoulder"):Destroy()
  454. makegloo(tors, LeftShoulderC0, LeftShoulderC1, tors, larm, "Left Shoulder")
  455. maketouchy(larm, larm, CFrame.new(0, 0.5, 0))
  456. end
  457. if rleg and tors:FindFirstChild("Right Hip") then
  458. tors:FindFirstChild("Right Hip"):Destroy()
  459. makegloo(tors, RightHipC0, RightHipC1, tors, rleg, "Right Hip")
  460. maketouchy(rleg, rleg, CFrame.new(0, 0.5, 0))
  461. end
  462. if lleg and tors:FindFirstChild("Left Hip") then
  463. tors:FindFirstChild("Left Hip"):Destroy()
  464. makegloo(tors, LeftHipC0, LeftHipC1, tors, lleg, "Left Hip")
  465. maketouchy(lleg, lleg, CFrame.new(0, 0.5, 0))
  466. end
  467. elseif ragged == true then
  468. ragged = false
  469. human.Jump = true
  470. if rarm and tors:FindFirstChild("Right Shoulder") then
  471. tors:FindFirstChild("Right Shoulder"):Destroy()
  472. makejoint(tors, RSC0, RSC1, tors, rarm, "Right Shoulder")
  473. rarm:FindFirstChild("touchy"):Destroy()
  474. end
  475. if larm and tors:FindFirstChild("Left Shoulder") then
  476. tors:FindFirstChild("Left Shoulder"):Destroy()
  477. makejoint(tors, LSC0, LSC1, tors, larm, "Left Shoulder")
  478. larm:FindFirstChild("touchy"):Destroy()
  479. end
  480. if rleg and tors:FindFirstChild("Right Hip") then
  481. tors:FindFirstChild("Right Hip"):Destroy()
  482. makejoint(tors, RHC0, RHC1, tors, rleg, "Right Hip")
  483. rleg:FindFirstChild("touchy"):Destroy()
  484. end
  485. if lleg and tors:FindFirstChild("Left Hip") then
  486. tors:FindFirstChild("Left Hip"):Destroy()
  487. makejoint(tors, LHC0, LHC1, tors, lleg, "Left Hip")
  488. lleg:FindFirstChild("touchy"):Destroy()
  489. end
  490. RS = tors:FindFirstChild("Right Shoulder")
  491. LS = tors:FindFirstChild("Left Shoulder")
  492. RH = tors:FindFirstChild("Right Hip")
  493. LH = tors:FindFirstChild("Left Hip")
  494. RJ = hrp:FindFirstChild("RootJoint")
  495. N = tors:FindFirstChild("Neck")
  496. end
  497. end
  498. function makegloo(paren, co, ci, parto, parti, nam)
  499. local gloo = Instance.new("Glue")
  500. gloo.Name = nam
  501. gloo.C0 = co
  502. gloo.C1 = ci
  503. gloo.Part0 = parto
  504. gloo.Part1 = parti
  505. gloo.Parent = paren
  506. end
  507. function makejoint(paren, co, ci, parto, parti, nam)
  508. local gloo = Instance.new("Motor6D")
  509. gloo.Name = nam
  510. gloo.C0 = co
  511. gloo.C1 = ci
  512. gloo.Part0 = parto
  513. gloo.Part1 = parti
  514. gloo.Parent = paren
  515. end
  516. function maketouchy(parent, limb, cframe)
  517. local pr = Instance.new("Part")
  518. pr.Name = "touchy"
  519. pr.Size = Vector3.new(1 * nscale.Value, 1 * nscale.Value, 1 * nscale.Value)
  520. pr.Transparency = 1
  521. pr.CustomPhysicalProperties = PhysicalProperties.new(0.55, 0.3, 0.5)
  522. pr.CanCollide = true
  523. pr.Anchored = false
  524. pr.Parent = parent
  525. local w = Instance.new("Weld")
  526. w.Part0 = pr
  527. w.Part1 = limb
  528. w.C0 = cframe
  529. w.Parent = pr
  530. end
  531. local clibat, spec
  532. local dipperhat = chr:FindFirstChild("DXD_DipperHat")
  533. local dipperrot
  534. if dipperhat then
  535. dipperrot = dipperhat.Handle.HatAttachment.Rotation
  536. end
  537. function bat()
  538. if selected == false or activu == true then
  539. return
  540. end
  541. if batting == false then
  542. batting = true
  543. do
  544. local bmod = Instance.new("Model")
  545. bmod.Name = "bmodel"
  546. bmod.Parent = chr
  547. local hnd = makepart("Br. yellowish green", "hnd", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  548. local hmes = makemesh("Head", Vector3.new(2, 9, 2), nil, hnd)
  549. local hwel = makeweld(hnd, hnd, rarm, ang(rd(90), rd(0), rd(0)) * cf(0, 1, 0), nil)
  550. local pt1 = makepart("Bright yellow", "pt1", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  551. local p1m = makemesh("Head", Vector3.new(2.5, 2.5, 2.5), nil, pt1)
  552. local p1w = makeweld(pt1, pt1, hnd, ang(rd(0), rd(0), rd(0)) * cf(0, 1, 0), nil)
  553. local pt2 = makepart("Bright yellow", "pt2", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  554. local p2m = makemesh("FileMesh", Vector3.new(0.375, 0.375, 0.375), "rbxassetid://250640098", pt2)
  555. p2m.TextureId = "rbxassetid://250639536"
  556. local p2w = makeweld(pt2, pt2, hnd, ang(rd(180), rd(180), rd(0)) * cf(0, 1.225, 0.075), nil)
  557. local pt3 = makepart("Bright yellow", "pt3", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  558. local p3m = makemesh("Head", Vector3.new(2.5, 2.5, 2.5), nil, pt3)
  559. local p3w = makeweld(pt3, pt3, hnd, ang(rd(0), rd(0), rd(0)) * cf(0, -1, 0), nil)
  560. local pt4 = makepart("Bright yellow", "pt4", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  561. local p4m = makemesh("FileMesh", Vector3.new(0.025, 0.025, 0.025), "rbxassetid://703458158", pt4)
  562. local p4w = makeweld(pt4, pt4, hnd, ang(rd(180), rd(0), rd(0)) * cf(0, -1.25, 0), nil)
  563. local pt5 = makepart("Bright yellow", "pt5", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  564. local p5m = makemesh("Cylinder", Vector3.new(21.5, 6.25, 6.25), nil, pt5)
  565. local p5w = makeweld(pt5, pt5, hnd, ang(rd(0), rd(0), rd(90)) * cf(0, -4.025, 0), nil)
  566. local pt6 = makepart("Bright yellow", "pt6", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  567. local p6m = makemesh("Head", Vector3.new(6.5, 6.5, 6.5), nil, pt6)
  568. local p6w = makeweld(pt6, pt6, hnd, ang(rd(0), rd(0), rd(0)) * cf(0, -6.05, 0), nil)
  569. local pt7 = makepart("Bright yellow", "pt7", 0, 0, "SmoothPlastic", bmod, rarm.CFrame)
  570. local p7m = makemesh("FileMesh", Vector3.new(0.95, 0.95, 0.95), "rbxassetid://272942659", pt7)
  571. p7m.TextureId = "rbxassetid://272942750"
  572. local p7w = makeweld(pt7, pt7, hnd, ang(rd(0), rd(90), rd(0)) * cf(0, -6.2, 0), nil)
  573. local swingwoo = Instance.new("Sound")
  574. swingwoo.SoundId = "rbxassetid://10209640"
  575. swingwoo.Pitch = rd2(10, 11) / 10
  576. swingwoo.Name = "sweae"
  577. swingwoo.Volume = 1
  578. swingwoo.Parent = hrp
  579. clibat = tool.Activated:connect(function()
  580. if selected == false or activu == true or ragged == true then
  581. return
  582. end
  583. activu = true
  584. for _ = 1, 5 do
  585. swait()
  586. lerpz(RJ, "C0", RJC0 * cf(0, 0.5, 0) * ang(rd(-20), rd(10), rd(-40)), 0.7)
  587. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  588. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(20), rd(-20), rd(179)), 0.7)
  589. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  590. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-20), rd(20), rd(30)), 0.7)
  591. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  592. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(-30)), 0.7)
  593. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  594. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-110)), 0.7)
  595. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  596. end
  597. local bon = Instance.new("Sound")
  598. bon.SoundId = "rbxassetid://135436482"
  599. bon.Pitch = rd2(10, 12) / 10
  600. bon.Volume = 1
  601. bon.Parent = hrp
  602. game.Debris:AddItem(bon, 1)
  603. bon:Play()
  604. swingwoo:Play()
  605. for X = 1, 5 do
  606. swait()
  607. if X > 1 then
  608. hito(pt5, 5, 10, 0.2, hrp.CFrame.lookVector * 25, Vector3.new(0, rd2(-5, 5), rd2(-40, 40)))
  609. end
  610. lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(60), rd(-10), rd(30)), 0.7)
  611. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  612. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(20), rd(20), rd(40)), 0.7)
  613. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  614. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-70), rd(20), rd(30)), 0.7)
  615. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  616. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(20), rd(-40), rd(80)), 0.7)
  617. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  618. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(60)), 0.7)
  619. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  620. end
  621. activu = false
  622. end)
  623. spec = mouse.KeyDown:connect(function(keya)
  624. if selected == false or activu == true or ragged == true then
  625. return
  626. end
  627. if keya == "e" then
  628. activu = true
  629. local speed = human.WalkSpeed
  630. human.WalkSpeed = 0
  631. human:SetStateEnabled(3, false)
  632. local function expa()
  633. local sond = Instance.new("Sound")
  634. sond.Volume = 1.25
  635. sond.Pitch = 1
  636. sond.EmitterSize = 15
  637. sond.SoundId = "rbxassetid://315152748"
  638. sond.Parent = pt6
  639. sond:Play()
  640. for _ = 1, 3 do
  641. swait()
  642. hmes.Scale = hmes.Scale:lerp(Vector3.new(6, 27, 6), 0.7)
  643. p1m.Scale = p1m.Scale:lerp(Vector3.new(7.5, 7.5, 7.5), 0.7)
  644. p1w.C0 = p1w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, 3, 0), 0.7)
  645. p2m.Scale = p2m.Scale:lerp(Vector3.new(1.125, 1.125, 1.125), 0.7)
  646. p2w.C0 = p2w.C0:lerp(ang(rd(180), rd(180), rd(0)) * cf(0, 3.6750000000000003, 0.22499999999999998), 0.7)
  647. p3m.Scale = p3m.Scale:lerp(Vector3.new(7.5, 7.5, 7.5), 0.7)
  648. p3w.C0 = p3w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -3, 0), 0.7)
  649. p4m.Scale = p4m.Scale:lerp(Vector3.new(0.07500000000000001, 0.07500000000000001, 0.07500000000000001), 0.7)
  650. p4w.C0 = p4w.C0:lerp(ang(rd(180), rd(0), rd(0)) * cf(0, -3.75, 0), 0.7)
  651. p5m.Scale = p5m.Scale:lerp(Vector3.new(64.5, 18.75, 18.75), 0.7)
  652. p5w.C0 = p5w.C0:lerp(ang(rd(0), rd(0), rd(90)) * cf(0, -12.075000000000001, 0), 0.7)
  653. p6m.Scale = p6m.Scale:lerp(Vector3.new(19.5, 19.5, 19.5), 0.7)
  654. p6w.C0 = p6w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -18.15, 0), 0.7)
  655. p7m.Scale = p7m.Scale:lerp(Vector3.new(2.8499999999999996, 2.8499999999999996, 2.8499999999999996), 0.7)
  656. p7w.C0 = p7w.C0:lerp(ang(rd(0), rd(90), rd(0)) * cf(0, -18.6, 0), 0.7)
  657. end
  658. for _ = 1, 5 do
  659. swait()
  660. hmes.Scale = hmes.Scale:lerp(Vector3.new(4, 18, 4), 0.7)
  661. p1m.Scale = p1m.Scale:lerp(Vector3.new(5, 5, 5), 0.7)
  662. p1w.C0 = p1w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, 2, 0), 0.7)
  663. p2m.Scale = p2m.Scale:lerp(Vector3.new(0.75, 0.75, 0.75), 0.7)
  664. p2w.C0 = p2w.C0:lerp(ang(rd(180), rd(180), rd(0)) * cf(0, 2.45, 0.15), 0.7)
  665. p3m.Scale = p3m.Scale:lerp(Vector3.new(5, 5, 5), 0.7)
  666. p3w.C0 = p3w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -2, 0), 0.7)
  667. p4m.Scale = p4m.Scale:lerp(Vector3.new(0.05, 0.05, 0.05), 0.7)
  668. p4w.C0 = p4w.C0:lerp(ang(rd(180), rd(0), rd(0)) * cf(0, -2.5, 0), 0.7)
  669. p5m.Scale = p5m.Scale:lerp(Vector3.new(43, 12.5, 12.5), 0.7)
  670. p5w.C0 = p5w.C0:lerp(ang(rd(0), rd(0), rd(90)) * cf(0, -8.05, 0), 0.7)
  671. p6m.Scale = p6m.Scale:lerp(Vector3.new(13, 13, 13), 0.7)
  672. p6w.C0 = p6w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -12.1, 0), 0.7)
  673. p7m.Scale = p7m.Scale:lerp(Vector3.new(1.9, 1.9, 1.9), 0.7)
  674. p7w.C0 = p7w.C0:lerp(ang(rd(0), rd(90), rd(0)) * cf(0, -12.4, 0), 0.7)
  675. end
  676. sond.Pitch = 0.75
  677. sond:Play()
  678. for _ = 1, 3 do
  679. swait()
  680. hmes.Scale = hmes.Scale:lerp(Vector3.new(12, 54, 12), 0.7)
  681. p1m.Scale = p1m.Scale:lerp(Vector3.new(15, 15, 15), 0.7)
  682. p1w.C0 = p1w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, 6, 0), 0.7)
  683. p2m.Scale = p2m.Scale:lerp(Vector3.new(2.25, 2.25, 2.25), 0.7)
  684. p2w.C0 = p2w.C0:lerp(ang(rd(180), rd(180), rd(0)) * cf(0, 7.3500000000000005, 0.44999999999999996), 0.7)
  685. p3m.Scale = p3m.Scale:lerp(Vector3.new(15, 15, 15), 0.7)
  686. p3w.C0 = p3w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -6, 0), 0.7)
  687. p4m.Scale = p4m.Scale:lerp(Vector3.new(0.15000000000000002, 0.15000000000000002, 0.15000000000000002), 0.7)
  688. p4w.C0 = p4w.C0:lerp(ang(rd(180), rd(0), rd(0)) * cf(0, -7.5, 0), 0.7)
  689. p5m.Scale = p5m.Scale:lerp(Vector3.new(129, 37.5, 37.5), 0.7)
  690. p5w.C0 = p5w.C0:lerp(ang(rd(0), rd(0), rd(90)) * cf(0, -24.150000000000002, 0), 0.7)
  691. p6m.Scale = p6m.Scale:lerp(Vector3.new(39, 39, 39), 0.7)
  692. p6w.C0 = p6w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -36.3, 0), 0.7)
  693. p7m.Scale = p7m.Scale:lerp(Vector3.new(5.699999999999999, 5.699999999999999, 5.699999999999999), 0.7)
  694. p7w.C0 = p7w.C0:lerp(ang(rd(0), rd(90), rd(0)) * cf(0, -37.2, 0), 0.7)
  695. end
  696. for _ = 1, 5 do
  697. swait()
  698. hmes.Scale = hmes.Scale:lerp(Vector3.new(8, 36, 8), 0.7)
  699. p1m.Scale = p1m.Scale:lerp(Vector3.new(10, 10, 10), 0.7)
  700. p1w.C0 = p1w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, 4, 0), 0.7)
  701. p2m.Scale = p2m.Scale:lerp(Vector3.new(1.5, 1.5, 1.5), 0.7)
  702. p2w.C0 = p2w.C0:lerp(ang(rd(180), rd(180), rd(0)) * cf(0, 4.9, 0.3), 0.7)
  703. p3m.Scale = p3m.Scale:lerp(Vector3.new(10, 10, 10), 0.7)
  704. p3w.C0 = p3w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -4, 0), 0.7)
  705. p4m.Scale = p4m.Scale:lerp(Vector3.new(0.1, 0.1, 0.1), 0.7)
  706. p4w.C0 = p4w.C0:lerp(ang(rd(180), rd(0), rd(0)) * cf(0, -5, 0), 0.7)
  707. p5m.Scale = p5m.Scale:lerp(Vector3.new(86, 25, 25), 0.7)
  708. p5w.C0 = p5w.C0:lerp(ang(rd(0), rd(0), rd(90)) * cf(0, -16.1, 0), 0.7)
  709. p6m.Scale = p6m.Scale:lerp(Vector3.new(26, 26, 26), 0.7)
  710. p6w.C0 = p6w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -24.2, 0), 0.7)
  711. p7m.Scale = p7m.Scale:lerp(Vector3.new(3.8, 3.8, 3.8), 0.7)
  712. p7w.C0 = p7w.C0:lerp(ang(rd(0), rd(90), rd(0)) * cf(0, -24.8, 0), 0.7)
  713. end
  714. sond.Pitch = 0.4
  715. sond:Play()
  716. game.Debris:AddItem(sond, 2)
  717. for _ = 1, 3 do
  718. swait()
  719. hmes.Scale = hmes.Scale:lerp(Vector3.new(18, 81, 18), 0.7)
  720. p1m.Scale = p1m.Scale:lerp(Vector3.new(22.5, 22.5, 22.5), 0.7)
  721. p1w.C0 = p1w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, 9, 0), 0.7)
  722. p2m.Scale = p2m.Scale:lerp(Vector3.new(3.375, 3.375, 3.375), 0.7)
  723. p2w.C0 = p2w.C0:lerp(ang(rd(180), rd(180), rd(0)) * cf(0, 11.025, 0.6749999999999999), 0.7)
  724. p3m.Scale = p3m.Scale:lerp(Vector3.new(22.5, 22.5, 22.5), 0.7)
  725. p3w.C0 = p3w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -9, 0), 0.7)
  726. p4m.Scale = p4m.Scale:lerp(Vector3.new(0.225, 0.225, 0.225), 0.7)
  727. p4w.C0 = p4w.C0:lerp(ang(rd(180), rd(0), rd(0)) * cf(0, -11.25, 0), 0.7)
  728. p5m.Scale = p5m.Scale:lerp(Vector3.new(193.5, 56.25, 56.25), 0.7)
  729. p5w.C0 = p5w.C0:lerp(ang(rd(0), rd(0), rd(90)) * cf(0, -36.225, 0), 0.7)
  730. p6m.Scale = p6m.Scale:lerp(Vector3.new(58.5, 58.5, 58.5), 0.7)
  731. p6w.C0 = p6w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -54.449999999999996, 0), 0.7)
  732. p7m.Scale = p7m.Scale:lerp(Vector3.new(5.699999999999999, 8.549999999999999, 8.549999999999999), 0.7)
  733. p7w.C0 = p7w.C0:lerp(ang(rd(0), rd(90), rd(0)) * cf(0, -55.800000000000004, 0), 0.7)
  734. end
  735. for _ = 1, 5 do
  736. swait()
  737. hmes.Scale = hmes.Scale:lerp(Vector3.new(14, 63, 14), 0.7)
  738. p1m.Scale = p1m.Scale:lerp(Vector3.new(17.5, 17.5, 17.5), 0.7)
  739. p1w.C0 = p1w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, 7, 0), 0.7)
  740. p2m.Scale = p2m.Scale:lerp(Vector3.new(2.625, 2.625, 2.625), 0.7)
  741. p2w.C0 = p2w.C0:lerp(ang(rd(180), rd(180), rd(0)) * cf(0, 8.575000000000001, 0.525), 0.7)
  742. p3m.Scale = p3m.Scale:lerp(Vector3.new(17.5, 17.5, 17.5), 0.7)
  743. p3w.C0 = p3w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -7, 0), 0.7)
  744. p4m.Scale = p4m.Scale:lerp(Vector3.new(0.17500000000000002, 0.17500000000000002, 0.17500000000000002), 0.7)
  745. p4w.C0 = p4w.C0:lerp(ang(rd(180), rd(0), rd(0)) * cf(0, -8.75, 0), 0.7)
  746. p5m.Scale = p5m.Scale:lerp(Vector3.new(150.5, 43.75, 43.75), 0.7)
  747. p5w.C0 = p5w.C0:lerp(ang(rd(0), rd(0), rd(90)) * cf(0, -28.175000000000004, 0), 0.7)
  748. p6m.Scale = p6m.Scale:lerp(Vector3.new(45.5, 45.5, 45.5), 0.7)
  749. p6w.C0 = p6w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -42.35, 0), 0.7)
  750. p7m.Scale = p7m.Scale:lerp(Vector3.new(6.6499999999999995, 6.6499999999999995, 6.6499999999999995), 0.7)
  751. p7w.C0 = p7w.C0:lerp(ang(rd(0), rd(90), rd(0)) * cf(0, -43.4, 0), 0.7)
  752. end
  753. end
  754. for _ = 1, 9 do
  755. swait()
  756. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-5), rd(0), rd(0)), 0.5)
  757. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(0)), 0.5)
  758. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(0), rd(-10)), 0.5)
  759. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  760. lerpz(LS, "C0", LSC0 * cf(0, 0.2, -0.2) * ang(rd(70), rd(-60), rd(-100)), 0.5)
  761. if dipperhat then
  762. dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(0, 0, 0), 0.3)
  763. end
  764. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  765. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(-10)), 0.5)
  766. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  767. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.5)
  768. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  769. end
  770. for _ = 1, 9 do
  771. swait()
  772. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-5), rd(0), rd(0)), 0.5)
  773. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(0)), 0.5)
  774. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(0), rd(-10)), 0.5)
  775. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  776. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(35), rd(-50), rd(-100)), 0.3)
  777. if dipperhat then
  778. dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(15, 0, 0), 0.3)
  779. end
  780. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  781. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(-10)), 0.5)
  782. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  783. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.5)
  784. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  785. end
  786. for _ = 1, 30 do
  787. swait()
  788. lerpz(RJ, "C0", RJC0 * cf(1.1, 0.6, 0) * ang(rd(0), rd(0), rd(-120)), 0.2)
  789. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(-20)), 0.2)
  790. lerpz(RS, "C0", RSC0 * cf(0, 0.4, 0.2) * ang(rd(80), rd(-20), rd(80)), 0.2)
  791. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  792. lerpz(LS, "C0", LSC0 * cf(0, -0.2, -0.7) * ang(rd(-20), rd(-60), rd(-80)), 0.2)
  793. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  794. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-5)), 0.2)
  795. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  796. lerpz(LH, "C0", LHC0 * cf(0.4, 0, -0.4) * ang(rd(-10), rd(70), rd(-5)), 0.2)
  797. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  798. end
  799. expa()
  800. for O = 1, 10 do
  801. swait()
  802. lerpz(RJ, "C0", RJC0 * cf(0, 0.3, 0) * ang(rd(0), rd(0), rd(60)), 0.001 + O * 0.01)
  803. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(-20)), 0.001 + O * 0.01)
  804. lerpz(RS, "C0", RSC0 * cf(0, 0.4, 0.2) * ang(rd(80), rd(-20), rd(80)), 0.001 + O * 0.01)
  805. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.001 + O * 0.01)
  806. lerpz(LS, "C0", LSC0 * cf(0, -0.2, -0.7) * ang(rd(-20), rd(-60), rd(-80)), 0.001 + O * 0.01)
  807. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.001 + O * 0.01)
  808. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-5)), 0.001 + O * 0.01)
  809. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.001 + O * 0.01)
  810. lerpz(LH, "C0", LHC0 * cf(0.4, 0, -0.4) * ang(rd(-10), rd(70), rd(-5)), 0.001 + O * 0.01)
  811. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.001 + O * 0.01)
  812. end
  813. local whoooo = Instance.new("Sound")
  814. whoooo.Volume = 3
  815. whoooo.TimePosition = 0.15
  816. whoooo.Pitch = 0.5
  817. whoooo.SoundId = "rbxassetid://320557353"
  818. whoooo.Parent = pt5
  819. whoooo:Play()
  820. game.Debris:AddItem(whoooo, 2)
  821. for O = 1, 6 do
  822. swait()
  823. hito(pt5, 25, 40, 0.75, hrp.CFrame.rightVector * -100 + Vector3.new(0, 50, 0), Vector3.new(0, rd2(-25, 25), rd2(-160, 160)))
  824. lerpz(RJ, "C0", RJC0 * cf(0.9, -0.7, 0) * ang(rd(0), rd(0), rd(120)), 0.1 + O * 0.05)
  825. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(-20)), 0.1 + O * 0.05)
  826. lerpz(RS, "C0", RSC0 * cf(0, 0.4, 0.2) * ang(rd(80), rd(20), rd(20)), 0.1 + O * 0.05)
  827. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + O * 0.05)
  828. lerpz(LS, "C0", LSC0 * cf(0, -0.2, -0.7) * ang(rd(-20), rd(-60), rd(-80)), 0.1 + O * 0.05)
  829. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + O * 0.05)
  830. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-5)), 0.1 + O * 0.05)
  831. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + O * 0.05)
  832. lerpz(LH, "C0", LHC0 * cf(0.4, 0, -0.4) * ang(rd(-10), rd(70), rd(-5)), 0.1 + O * 0.05)
  833. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + O * 0.05)
  834. end
  835. for O = 1, 13 do
  836. swait()
  837. hmes.Scale = hmes.Scale:lerp(Vector3.new(2, 9, 2), 0.05 + O * 0.075)
  838. p1m.Scale = p1m.Scale:lerp(Vector3.new(2.5, 2.5, 2.5), 0.05 + O * 0.075)
  839. p1w.C0 = p1w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, 1, 0), 0.05 + O * 0.075)
  840. p2m.Scale = p2m.Scale:lerp(Vector3.new(0.375, 0.375, 0.375), 0.05 + O * 0.075)
  841. p2w.C0 = p2w.C0:lerp(ang(rd(180), rd(180), rd(0)) * cf(0, 1.225, 0.075), 0.05 + O * 0.075)
  842. p3m.Scale = p3m.Scale:lerp(Vector3.new(2.5, 2.5, 2.5), 0.05 + O * 0.075)
  843. p3w.C0 = p3w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -1, 0), 0.05 + O * 0.075)
  844. p4m.Scale = p4m.Scale:lerp(Vector3.new(0.025, 0.025, 0.025), 0.05 + O * 0.075)
  845. p4w.C0 = p4w.C0:lerp(ang(rd(180), rd(0), rd(0)) * cf(0, -1.25, 0), 0.05 + O * 0.075)
  846. p5m.Scale = p5m.Scale:lerp(Vector3.new(21.5, 6.25, 6.25), 0.05 + O * 0.075)
  847. p5w.C0 = p5w.C0:lerp(ang(rd(0), rd(0), rd(90)) * cf(0, -4.025, 0), 0.05 + O * 0.075)
  848. p6m.Scale = p6m.Scale:lerp(Vector3.new(6.5, 6.5, 6.5), 0.05 + O * 0.075)
  849. p6w.C0 = p6w.C0:lerp(ang(rd(0), rd(0), rd(0)) * cf(0, -6.05, 0), 0.05 + O * 0.075)
  850. p7m.Scale = p7m.Scale:lerp(Vector3.new(0.95, 0.95, 0.95), 0.05 + O * 0.075)
  851. p7w.C0 = p7w.C0:lerp(ang(rd(0), rd(90), rd(0)) * cf(0, -6.2, 0), 0.05 + O * 0.075)
  852. lerpz(RJ, "C0", RJC0 * cf(1.1, -0.8, 0) * ang(rd(0), rd(0), rd(150)), 0.05 + O * 0.075)
  853. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(-20)), 0.05 + O * 0.075)
  854. lerpz(RS, "C0", RSC0 * cf(0, 0.4, 0.2) * ang(rd(80), rd(30), rd(10)), 0.05 + O * 0.075)
  855. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + O * 0.075)
  856. lerpz(LS, "C0", LSC0 * cf(0, -0.2, -0.7) * ang(rd(20), rd(20), rd(-20)), 0.05 + O * 0.075)
  857. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + O * 0.075)
  858. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-5)), 0.05 + O * 0.075)
  859. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + O * 0.075)
  860. lerpz(LH, "C0", LHC0 * cf(0.4, 0, -0.4) * ang(rd(-10), rd(70), rd(-5)), 0.05 + O * 0.075)
  861. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + O * 0.075)
  862. end
  863. if dipperhat then
  864. dipperhat.Handle.HatAttachment.Rotation = dipperrot
  865. end
  866. human.WalkSpeed = speed
  867. human:SetStateEnabled(3, true)
  868. activu = false
  869. end
  870. if keya == "q" then
  871. activu = true
  872. do
  873. local checkkey = true
  874. local keyingup = mouse.KeyUp:connect(function(xzx)
  875. if xzx == "q" then
  876. checkkey = false
  877. end
  878. end)
  879. repeat
  880. for _ = 1, 2 do
  881. swait()
  882. lerpz(RJ, "C0", RJC0 * cf(0, 0.5, 0) * ang(rd(-20), rd(10), rd(-40)), 0.7)
  883. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.7)
  884. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(20), rd(-20), rd(179)), 0.7)
  885. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  886. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-20), rd(20), rd(30)), 0.7)
  887. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  888. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(-30)), 0.7)
  889. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  890. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-110)), 0.7)
  891. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  892. end
  893. swingwoo:Play()
  894. for T = 1, 2 do
  895. swait()
  896. if T == 2 then
  897. hito(pt5, 5, 4, 0.03, hrp.CFrame.lookVector * 10, Vector3.new(0, rd2(-2, 2), rd2(-10, 10)))
  898. end
  899. lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(60), rd(-10), rd(30)), 0.7)
  900. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  901. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(20), rd(20), rd(40)), 0.7)
  902. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  903. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-70), rd(20), rd(30)), 0.7)
  904. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  905. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(20), rd(-40), rd(80)), 0.7)
  906. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  907. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(60)), 0.7)
  908. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  909. end
  910. for _ = 1, 2 do
  911. swait()
  912. lerpz(RJ, "C0", RJC0 * cf(0, 0.5, 0) * ang(rd(-30), rd(20), rd(0)), 0.7)
  913. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.7)
  914. lerpz(RS, "C0", RSC0 * cf(0, 0.5, 0) * ang(rd(60), rd(20), rd(179)), 0.7)
  915. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  916. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-40), rd(20), rd(30)), 0.7)
  917. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  918. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(-30)), 0.7)
  919. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  920. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-30), rd(20), rd(35)), 0.7)
  921. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  922. end
  923. swingwoo:Play()
  924. for T = 1, 2 do
  925. swait()
  926. if T == 2 then
  927. hito(pt5, 5, 4, 0.03, hrp.CFrame.lookVector * 10, Vector3.new(0, rd2(-2, 2), rd2(-10, 10)))
  928. end
  929. lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(40), rd(40), rd(0)), 0.7)
  930. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.7)
  931. lerpz(RS, "C0", RSC0 * cf(0, 0.5, 0) * ang(rd(60), rd(20), rd(30)), 0.7)
  932. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  933. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-70), rd(20), rd(30)), 0.7)
  934. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  935. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(-30)), 0.7)
  936. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  937. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-30), rd(20), rd(-65)), 0.7)
  938. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.7)
  939. end
  940. until not checkkey
  941. keyingup:Disconnect()
  942. activu = false
  943. end
  944. end
  945. if keya == "f" then
  946. activu = true
  947. do
  948. local speed = human.WalkSpeed
  949. human.WalkSpeed = 2
  950. human:SetStateEnabled(3, false)
  951. local checkkey = true
  952. local chargecounter = 0
  953. local keyingup = mouse.KeyUp:connect(function(xzx)
  954. if xzx == "f" then
  955. checkkey = false
  956. end
  957. end)
  958. local firederp
  959. for _ = 1, 8 do
  960. swait()
  961. hwel.C0 = hwel.C0:lerp(ang(rd(65), rd(0), rd(0)) * cf(0, 1, 0), 0.6)
  962. lerpz(RJ, "C0", RJC0 * cf(0.5, 0.5, 0) * ang(rd(0), rd(0), rd(-70)), 0.5)
  963. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(60)), 0.5)
  964. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(70), rd(-10), rd(80)), 0.5)
  965. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  966. lerpz(LS, "C0", LSC0 * cf(-0.3, -0.1, -1) * ang(rd(-10), rd(-70), rd(-75)), 0.5)
  967. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.5)
  968. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-5), rd(-10), rd(5)), 0.5)
  969. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  970. lerpz(LH, "C0", LHC0 * cf(0.5, 0, -0.4) * ang(rd(0), rd(80), rd(-5)), 0.5)
  971. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(0)), 0.5)
  972. end
  973. repeat
  974. swait()
  975. chargecounter = chargecounter + 1
  976. lerpz(RS, "C0", RSC0 * cf(rd2(-5, 5) / 100, rd2(-5, 5) / 100, rd2(-5, 5) / 100) * ang(rd(rd2(65, 75)), rd(rd2(-15, 5)), rd(rd2(75, 85))), 0.05 + chargecounter * 0.019)
  977. lerpz(LS, "C0", LSC0 * cf(-0.3, -0.1, -1) * ang(rd(rd2(-15, -5)), rd(rd2(-75, -65)), rd(rd2(-80, -70))), 0.05 + chargecounter * 0.019)
  978. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(rd2(-25, -15)), rd(0)), 0.05 + chargecounter * 0.019)
  979. if chargecounter > 30 and firederp == nil then
  980. firederp = Instance.new("Fire")
  981. firederp.Parent = pt5
  982. end
  983. until not checkkey or chargecounter > 50
  984. swingwoo:Play()
  985. for U = 1, 10 do
  986. swait()
  987. if U < 3 then
  988. hito(pt5, 5, 10, 0.2, hrp.CFrame.lookVector * (80 + chargecounter * 3) + Vector3.new(0, 6 + 6 * (chargecounter / 5), 0), Vector3.new(0, rd2(-25, 25) * (chargecounter / 25), rd2(-80, 80) * (chargecounter / 25)))
  989. if chargecounter > 30 then
  990. tagexplode(pt5, 5, 1)
  991. end
  992. end
  993. hwel.C0 = hwel.C0:lerp(ang(rd(135), rd(0), rd(0)) * cf(0, 1, 0), 0.6)
  994. lerpz(RJ, "C0", RJC0 * cf(0.5, -0.5, 0) * ang(rd(0), rd(0), rd(50)), 0.6)
  995. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-5), rd(0), rd(-30)), 0.6)
  996. lerpz(RS, "C0", RSC0 * cf(0.75, 0.5, -0.5) * ang(rd(0), rd(60), rd(120)), 0.4)
  997. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(100), rd(0)), 0.4)
  998. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-10), rd(20), rd(-125)), 0.4)
  999. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.4)
  1000. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-5), rd(-10), rd(5)), 0.6)
  1001. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.6)
  1002. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(-10), rd(-6)), 0.6)
  1003. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(0)), 0.6)
  1004. end
  1005. if firederp then
  1006. firederp:Destroy()
  1007. end
  1008. swait(10)
  1009. hwel.C0 = ang(rd(90), rd(0), rd(0)) * cf(0, 1, 0)
  1010. keyingup:Disconnect()
  1011. human.WalkSpeed = speed
  1012. human:SetStateEnabled(3, true)
  1013. activu = false
  1014. end
  1015. end
  1016. end)
  1017. end
  1018. elseif batting == true then
  1019. batting = false
  1020. clibat:Disconnect()
  1021. spec:Disconnect()
  1022. hrp.sweae:Destroy()
  1023. local batmod = chr:FindFirstChild("bmodel")
  1024. batmod.hnd.Weld:Destroy()
  1025. batmod.PrimaryPart = batmod.hnd
  1026. batmod:SetPrimaryPartCFrame(rarm.CFrame * ang(rd(-90), rd(0), rd(0)) * cf(0, 0, -1))
  1027. for _, A in pairs(batmod:GetChildren()) do
  1028. if A.ClassName == "Part" then
  1029. A.CanCollide = true
  1030. A.Anchored = false
  1031. end
  1032. end
  1033. batmod.Parent = workspace
  1034. game.Debris:AddItem(batmod, 8)
  1035. end
  1036. end
  1037. local movin = false
  1038. local cliham, hamspec
  1039. function ham()
  1040. if batting == false then
  1041. batting = true
  1042. do
  1043. local bmod = Instance.new("Model")
  1044. bmod.Name = "bmodel"
  1045. bmod.Parent = chr
  1046. local makemotor = function(parent, p0, p1, c0, c1)
  1047. local wel = Instance.new("Motor6D")
  1048. wel.Part0 = p0
  1049. wel.Part1 = p1
  1050. wel.C0 = c0
  1051. if c1 ~= nil then
  1052. wel.C1 = c1
  1053. end
  1054. wel.Parent = parent
  1055. return wel
  1056. end
  1057. local hnd = makepart("Br. yellowish green", "hnd", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1058. hnd.Anchored = true
  1059. local hmes = makemesh("Head", Vector3.new(5, 30, 5), nil, hnd)
  1060. movin = true
  1061. hnd.CFrame = hrp.CFrame
  1062. coroutine.resume(coroutine.create(function()
  1063. while hnd.Anchored == true do
  1064. swait()
  1065. if movin then
  1066. hnd.CFrame = hnd.CFrame:lerp(hrp.CFrame * ang(rd(40), rd(0), rd(0)) * cf(0, 11, 0), 0.65)
  1067. end
  1068. end
  1069. end))
  1070. local pt1 = makepart("Br. yellowish green", "pt1", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1071. local p1m = makemesh("Head", Vector3.new(6, 5.5, 5.5), nil, pt1)
  1072. local p1w = makemotor(pt1, pt1, hnd, ang(rd(0), rd(0), rd(0)) * cf(0, 3, 0), nil)
  1073. local pt2 = makepart("Br. yellowish green", "pt2", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1074. local p2m = makemesh("Head", Vector3.new(6, 5.5, 5.5), nil, pt2)
  1075. local p2w = makemotor(pt2, pt2, hnd, ang(rd(0), rd(0), rd(0)) * cf(0, -3, 0), nil)
  1076. local pt3 = makepart("Bright yellow", "pt3", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1077. local p3m = makemesh("Head", Vector3.new(6.5, 6.5, 6.5), nil, pt3)
  1078. local p3w = makemotor(pt3, pt3, hnd, ang(rd(0), rd(0), rd(0)) * cf(0, 3.75, 0), nil)
  1079. local pt4 = makepart("Br. yellowish green", "pt4", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1080. local p4m = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxassetid://250640098", pt4)
  1081. p4m.TextureId = "rbxassetid://250639536"
  1082. local p4w = makemotor(pt4, pt4, hnd, ang(rd(180), rd(180), rd(0)) * cf(0, 4.25, 0.25), nil)
  1083. local pt5 = makepart("Bright blue", "pt5", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1084. local p5m = makemesh("Head", Vector3.new(5, 90, 4), nil, pt5)
  1085. local p5w = makemotor(pt5, pt5, hnd, ang(rd(0), rd(0), rd(0)) * cf(0, -12, 0), nil)
  1086. local pt6 = makepart("Bright blue", "pt6", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1087. local p6m = makemesh("FileMesh", Vector3.new(0.16, 0.4, 0.16), "rbxassetid://703458158", pt6)
  1088. local p6w = makemotor(pt6, pt6, hnd, ang(rd(180), rd(0), rd(0)) * cf(0, -16, 0), nil)
  1089. local pt7 = makepart("Bright yellow", "pt7", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1090. local p7m = makemesh("Head", Vector3.new(75, 75, 75), nil, pt7)
  1091. local p7w = makemotor(pt7, pt7, hnd, ang(rd(0), rd(90), rd(0)) * cf(0, -27, 0), nil)
  1092. local hdec1 = Instance.new("Decal")
  1093. hdec1.Texture = "rbxasset://textures/face.png"
  1094. hdec1.Face = "Front"
  1095. hdec1.Parent = pt7
  1096. local pt8 = makepart("Bright yellow", "pt8", 0, 1, "SmoothPlastic", bmod, hrp.CFrame)
  1097. local p8m = makemesh("Head", Vector3.new(75, 75, 75), nil, pt8)
  1098. local p8w = makemotor(pt8, pt8, hnd, ang(rd(0), rd(-90), rd(0)) * cf(0, -27, 0), nil)
  1099. local hdec2 = Instance.new("Decal")
  1100. hdec2.Texture = "rbxasset://textures/face.png"
  1101. hdec2.Face = "Front"
  1102. hdec2.Parent = pt8
  1103. local pt9 = makepart("Bright yellow", "pt9", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1104. local p9m = makemesh("FileMesh", Vector3.new(12, 11, 11), "rbxassetid://272942659", pt9)
  1105. local p9w = makemotor(pt9, pt9, hnd, ang(rd(0), rd(90), rd(0)) * cf(0, -30, 0), nil)
  1106. p9m.TextureId = "rbxassetid://272942750"
  1107. local pt10 = makepart("Bright yellow", "pt10", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1108. local p10m = makemesh("Head", Vector3.new(60, 60, 60), nil, pt10)
  1109. local p10w = makemotor(pt10, pt10, pt7, ang(rd(0), rd(0), rd(90)) * cf(11, 0, 0), nil)
  1110. local hdec3 = Instance.new("Decal")
  1111. hdec3.Texture = "rbxasset://textures/face.png"
  1112. hdec3.Face = "Front"
  1113. hdec3.Parent = pt10
  1114. local pt11 = makepart("Bright yellow", "pt11", 0, 1, "SmoothPlastic", bmod, hrp.CFrame)
  1115. local p11m = makemesh("Head", Vector3.new(60, 60, 60), nil, pt11)
  1116. local p11w = makemotor(pt11, pt11, pt7, ang(rd(0), rd(180), rd(90)) * cf(11, 0, 0), nil)
  1117. local hdec4 = Instance.new("Decal")
  1118. hdec4.Texture = "rbxasset://textures/face.png"
  1119. hdec4.Face = "Front"
  1120. hdec4.Parent = pt11
  1121. local pt12 = makepart("Bright yellow", "pt12", 0, 0, "SmoothPlastic", bmod, hrp.CFrame)
  1122. local p12m = makemesh("Head", Vector3.new(60, 60, 60), nil, pt12)
  1123. local p12w = makemotor(pt12, pt12, pt7, ang(rd(0), rd(0), rd(-90)) * cf(-11, 0, 0), nil)
  1124. local hdec5 = Instance.new("Decal")
  1125. hdec5.Texture = "rbxasset://textures/face.png"
  1126. hdec5.Face = "Front"
  1127. hdec5.Parent = pt12
  1128. local pt13 = makepart("Bright yellow", "pt13", 0, 1, "SmoothPlastic", bmod, hrp.CFrame)
  1129. local p13m = makemesh("Head", Vector3.new(60, 60, 60), nil, pt13)
  1130. local p13w = makemotor(pt13, pt13, pt7, ang(rd(0), rd(180), rd(-90)) * cf(-11, 0, 0), nil)
  1131. local hdec6 = Instance.new("Decal")
  1132. hdec6.Texture = "rbxasset://textures/face.png"
  1133. hdec6.Face = "Front"
  1134. hdec6.Parent = pt13
  1135. cliham = tool.Activated:connect(function()
  1136. if selected == false or activu == true or ragged == true then
  1137. return
  1138. end
  1139. activu = true
  1140. movin = false
  1141. for B = 1, 20 do
  1142. swait()
  1143. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-5), rd(0), rd(0)), 0.4)
  1144. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(8), rd(0), rd(0)), 0.4)
  1145. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-15), rd(-5), rd(170)), 0.4)
  1146. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1147. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(-10), rd(10)), 0.4)
  1148. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1149. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-5), rd(-10), rd(-10)), 0.4)
  1150. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1151. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-5), rd(10), rd(10)), 0.4)
  1152. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1153. hnd.CFrame = hnd.CFrame:lerp(rarm.CFrame * ang(rd(-110), rd(0), rd(0)) * cf(0, 0, -1), 0.1 + B * 0.045)
  1154. end
  1155. for B = 1, 30 do
  1156. swait()
  1157. lerpz(RJ, "C0", RJC0 * cf(0, 0.8, 0) * ang(rd(-25), rd(0), rd(-50)), 0.1 + B / 80)
  1158. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-18), rd(0), rd(40)), 0.1 + B / 80)
  1159. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-30), rd(-5), rd(160)), 0.1 + B / 80)
  1160. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + B / 80)
  1161. lerpz(LS, "C0", LSC0 * cf(-0.8, 0, -1) * ang(rd(-60), rd(-20), rd(-150)), 0.1 + B / 80)
  1162. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + B / 80)
  1163. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-15), rd(-20), rd(-10)), 0.1 + B / 80)
  1164. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + B / 80)
  1165. lerpz(LH, "C0", LHC0 * cf(0.5, 0, -0.4) * ang(rd(-5), rd(60), rd(-110)), 0.1 + B / 80)
  1166. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + B / 80)
  1167. hnd.CFrame = hnd.CFrame:lerp(rarm.CFrame * ang(rd(-110), rd(0), rd(0)) * cf(0, 0, -1), 1)
  1168. end
  1169. for B = 1, 7 do
  1170. swait()
  1171. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(40)), 0.015 + B / 15)
  1172. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(9), rd(0), rd(-15)), 0.015 + B / 15)
  1173. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(-50), rd(100)), 0.015 + B / 15)
  1174. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.015 + B / 15)
  1175. lerpz(LS, "C0", LSC0 * cf(-0.8, 0, -1) * ang(rd(-60), rd(-25), rd(-90)), 0.015 + B / 15)
  1176. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.015 + B / 15)
  1177. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-15), rd(-20), rd(10)), 0.015 + B / 15)
  1178. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.015 + B / 15)
  1179. lerpz(LH, "C0", LHC0 * cf(0.1, 0, -0.1) * ang(rd(-5), rd(20), rd(-20)), 0.015 + B / 15)
  1180. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.015 + B / 15)
  1181. hnd.CFrame = hnd.CFrame:lerp(rarm.CFrame * ang(rd(-110), rd(0), rd(0)) * cf(0, 0, -1), 1)
  1182. end
  1183. for B = 1, 4 do
  1184. swait()
  1185. lerpz(RJ, "C0", RJC0 * cf(0, -0.8, 0) * ang(rd(70), rd(0), rd(40)), 0.38 + B * 0.1)
  1186. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(9), rd(0), rd(-15)), 0.38 + B * 0.1)
  1187. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(-40), rd(100)), 0.38 + B * 0.1)
  1188. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.38 + B * 0.1)
  1189. lerpz(LS, "C0", LSC0 * cf(-0.8, 0, -1) * ang(rd(-60), rd(-25), rd(-90)), 0.38 + B * 0.1)
  1190. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.38 + B * 0.1)
  1191. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-15), rd(-20), rd(60)), 0.38 + B * 0.1)
  1192. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.38 + B * 0.1)
  1193. lerpz(LH, "C0", LHC0 * cf(0.1, 0, -0.1) * ang(rd(-5), rd(20), rd(70)), 0.38 + B * 0.1)
  1194. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.38 + B * 0.1)
  1195. hnd.CFrame = hnd.CFrame:lerp(rarm.CFrame * ang(rd(-110), rd(0), rd(0)) * cf(0, 0, -1), 1)
  1196. end
  1197. swait(15)
  1198. movin = true
  1199. activu = false
  1200. end)
  1201. end
  1202. elseif batting == true then
  1203. batting = false
  1204. cliham:Disconnect()
  1205. local badevz = chr:FindFirstChild("bmodel")
  1206. badevz.PrimaryPart = badevz.hnd
  1207. for _, A in pairs(badevz:GetChildren()) do
  1208. if A.ClassName == "Part" then
  1209. A.CanCollide = true
  1210. A.Anchored = false
  1211. end
  1212. end
  1213. movin = false
  1214. badevz.Parent = workspace
  1215. badevz:SetPrimaryPartCFrame(hrp.CFrame * ang(rd(40), rd(0), rd(0)) * cf(0, -11, 0))
  1216. game.Debris:AddItem(badevz, 8)
  1217. end
  1218. end
  1219. game:GetService("ContentProvider"):Preload("rbxassetid://725969678")
  1220. function lauf()
  1221. if selected == false or activu == true then
  1222. return
  1223. end
  1224. lauf1:Play()
  1225. end
  1226. function makenoob(cfrem, scalo, rags)
  1227. nscale.Value = scalo
  1228. local md = Instance.new("Model")
  1229. md.Name = "Noob"
  1230. md.Parent = workspace
  1231. local hu = Instance.new("Humanoid")
  1232. hu.RigType = "R6"
  1233. hu.MaxHealth = 100 * scalo
  1234. hu.Health = 100 * scalo
  1235. hu.Parent = md
  1236. local anm = Instance.new("Animator")
  1237. anm.Parent = hu
  1238. hu.PlatformStand = true
  1239. local light = function(part)
  1240. part.CustomPhysicalProperties = PhysicalProperties.new(0.35, 0.3, 0.5)
  1241. end
  1242. local hd = Instance.new("Part")
  1243. hd.Name = "Head"
  1244. hd.Size = Vector3.new(2 * nscale.Value, 1 * nscale.Value, 1 * nscale.Value)
  1245. hd.TopSurface = "Smooth"
  1246. hd.BottomSurface = "Inlet"
  1247. hd.Locked = true
  1248. hd.BrickColor = BrickColor.new("Bright yellow")
  1249. hd.CanCollide = true
  1250. hd.Anchored = false
  1251. light(hd)
  1252. hd.Parent = md
  1253. local hm = Instance.new("SpecialMesh")
  1254. hm.MeshType = "Head"
  1255. hm.Scale = Vector3.new(1.25, 1.25, 1.25)
  1256. hm.Parent = hd
  1257. local hf = Instance.new("Decal")
  1258. hf.Texture = "rbxasset://textures/face.png"
  1259. local gen = math.random(1, 40)
  1260. if gen == 3 then
  1261. hf.Texture = "rbxassetid://260884109"
  1262. end
  1263. if gen == 8 then
  1264. hf.Texture = "rbxassetid://260569492"
  1265. end
  1266. if gen == 12 then
  1267. hf.Texture = "rbxassetid://259580505"
  1268. end
  1269. if gen == 16 then
  1270. hf.Texture = "rbxassetid://259579232"
  1271. end
  1272. if gen == 24 then
  1273. hf.Texture = "rbxassetid://259571525"
  1274. end
  1275. if gen == 28 then
  1276. hf.Texture = "rbxassetid://258283210"
  1277. end
  1278. if gen == 32 then
  1279. hf.Texture = "rbxassetid://258940032"
  1280. end
  1281. if gen == 38 then
  1282. hf.Texture = "rbxassetid://673220970"
  1283. hf.Color3 = Color3.new(0, 0, 0)
  1284. end
  1285. hf.Face = "Front"
  1286. hf.Parent = hd
  1287. local hrpa = Instance.new("Part")
  1288. hrpa.Name = "HumanoidRootPart"
  1289. hrpa.TopSurface, hrpa.BottomSurface = 0, 0
  1290. hrpa.Size = Vector3.new(2 * nscale.Value, 2 * nscale.Value, 1 * nscale.Value)
  1291. hrpa.Transparency = 1
  1292. hrpa.CanCollide = false
  1293. hrpa.Locked = true
  1294. light(hrpa)
  1295. hrpa.Parent = md
  1296. local tagbomb = Instance.new("BoolValue")
  1297. tagbomb.Name = "tagbomb"
  1298. tagbomb.Value = false
  1299. tagbomb.Parent = hrpa
  1300. local learm = Instance.new("Part")
  1301. learm.Name = "Left Arm"
  1302. learm.BrickColor = BrickColor.new("Bright yellow")
  1303. learm.CanCollide = false
  1304. learm.Locked = true
  1305. learm.Size = Vector3.new(1 * nscale.Value, 2 * nscale.Value, 1 * nscale.Value)
  1306. light(learm)
  1307. learm.Parent = md
  1308. local riarm = Instance.new("Part")
  1309. riarm.Name = "Right Arm"
  1310. riarm.BrickColor = BrickColor.new("Bright yellow")
  1311. riarm.CanCollide = false
  1312. riarm.Locked = true
  1313. light(riarm)
  1314. riarm.Size = Vector3.new(1 * nscale.Value, 2 * nscale.Value, 1 * nscale.Value)
  1315. riarm.Parent = md
  1316. local leleg = Instance.new("Part")
  1317. leleg.Name = "Left Leg"
  1318. leleg.BrickColor = BrickColor.new("Br. yellowish green")
  1319. leleg.CanCollide = false
  1320. leleg.Locked = true
  1321. light(leleg)
  1322. leleg.BottomSurface = 0
  1323. leleg.Size = Vector3.new(1 * nscale.Value, 2 * nscale.Value, 1 * nscale.Value)
  1324. leleg.Parent = md
  1325. local rileg = Instance.new("Part")
  1326. rileg.Name = "Right Leg"
  1327. rileg.BrickColor = BrickColor.new("Br. yellowish green")
  1328. rileg.CanCollide = false
  1329. rileg.Locked = true
  1330. light(rileg)
  1331. rileg.BottomSurface = 0
  1332. rileg.Size = Vector3.new(1 * nscale.Value, 2 * nscale.Value, 1 * nscale.Value)
  1333. rileg.Parent = md
  1334. local tor = Instance.new("Part")
  1335. tor.Name = "Torso"
  1336. tor.BrickColor = BrickColor.new("Bright blue")
  1337. tor.Locked = true
  1338. light(tor)
  1339. tor.Size = Vector3.new(2 * nscale.Value, 2 * nscale.Value, 1 * nscale.Value)
  1340. tor.LeftSurface, tor.RightSurface = "Weld", "Weld"
  1341. tor.Parent = md
  1342. md.PrimaryPart = hrpa
  1343. md:SetPrimaryPartCFrame(cfrem)
  1344. md:makeJoints()
  1345. makejoint(hrpa, RootJointC0, RootJointC1, hrpa, tor, "RootJoint")
  1346. makejoint(tor, NeckC0, NeckC1, tor, hd, "Neck")
  1347. if rags == true then
  1348. makegloo(tor, RightShoulderC0, RightShoulderC1, tor, riarm, "Right Shoulder")
  1349. makegloo(tor, LeftShoulderC0, LeftShoulderC1, tor, learm, "Left Shoulder")
  1350. makegloo(tor, RightHipC0, RightHipC1, tor, rileg, "Right Hip")
  1351. makegloo(tor, LeftHipC0, LeftHipC1, tor, leleg, "Left Hip")
  1352. maketouchy(riarm, riarm, CFrame.new(0, 0.5 * nscale.Value, 0))
  1353. maketouchy(learm, learm, CFrame.new(0, 0.5 * nscale.Value, 0))
  1354. maketouchy(leleg, leleg, CFrame.new(0, 0.5 * nscale.Value, 0))
  1355. maketouchy(rileg, rileg, CFrame.new(0, 0.5 * nscale.Value, 0))
  1356. elseif rags == false then
  1357. makejoint(tor, RightShoulderC0, RightShoulderC1, tor, riarm, "Right Shoulder")
  1358. makejoint(tor, LeftShoulderC0, LeftShoulderC1, tor, learm, "Left Shoulder")
  1359. makejoint(tor, RightHipC0, RightHipC1, tor, rileg, "Right Hip")
  1360. makejoint(tor, LeftHipC0, LeftHipC1, tor, leleg, "Left Hip")
  1361. hu.PlatformStand = false
  1362. end
  1363. nscale.Value = 1
  1364. hu.Touched:connect(function(tpart, uwot)
  1365. if tagbomb.Value == true and tpart.Parent ~= md and tpart.Parent.Parent ~= md and tpart.Parent.Parent.Parent ~= md then
  1366. tagbomb.Value = false
  1367. hu.Health = 0
  1368. local derp = Instance.new("Explosion")
  1369. derp.BlastPressure = 200
  1370. derp.BlastRadius = 8
  1371. derp.DestroyJointRadiusPercent = 0
  1372. derp.ExplosionType = 2
  1373. derp.Visible = true
  1374. derp.Position = uwot.Position - Vector3.new(0, 0.5, 0)
  1375. derp.Parent = workspace
  1376. game.Debris:AddItem(md, 8)
  1377. end
  1378. end)
  1379. return md
  1380. end
  1381. function makecircle(cfrem, scalo)
  1382. local mcir1 = Instance.new("Part")
  1383. mcir1.Anchored = true
  1384. mcir1.CanCollide = false
  1385. mcir1.Size = Vector3.new(0.2, 0.2, 0.2)
  1386. mcir1.Transparency = 1
  1387. mcir1.CFrame = cfrem
  1388. mcir1.Parent = modz
  1389. game.Debris:AddItem(mcir1, 8)
  1390. local d1 = Instance.new("Decal")
  1391. d1.Texture = "rbxassetid://602615043"
  1392. d1.Face = "Front"
  1393. d1.Parent = mcir1
  1394. local d2 = Instance.new("Decal")
  1395. d2.Texture = "rbxassetid://602617463"
  1396. d2.Face = "Back"
  1397. d2.Parent = mcir1
  1398. local bme = Instance.new("BlockMesh")
  1399. bme.Parent = mcir1
  1400. for _ = 1, 9 do
  1401. swait()
  1402. bme.Scale = bme.Scale:lerp(Vector3.new(35 * scalo, 35 * scalo, 0), 0.3)
  1403. end
  1404. coroutine.resume(coroutine.create(function()
  1405. swait(15)
  1406. for _ = 1, 12 do
  1407. swait()
  1408. d1.Transparency = d1.Transparency + 0.08
  1409. d2.Transparency = d2.Transparency + 0.08
  1410. end
  1411. mcir1:Destroy()
  1412. end))
  1413. return mcir1
  1414. end
  1415. function spawnnoob(circlecf, noobcf, scalez, ragd)
  1416. local aearae = makecircle(circlecf, scalez)
  1417. local nananb
  1418. if ragd then
  1419. nananb = makenoob(aearae.CFrame * noobcf, scalez, true)
  1420. elseif not ragd then
  1421. nananb = makenoob(aearae.CFrame * noobcf, scalez, false)
  1422. end
  1423. return nananb
  1424. end
  1425. function tagexplode(partoz, magn, bombdelay)
  1426. for _, guy in pairs(workspace:GetChildren()) do
  1427. if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy.Name == "Noob" and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude then
  1428. coroutine.resume(coroutine.create(function()
  1429. swait(bombdelay * 30)
  1430. guy:FindFirstChild("HumanoidRootPart").tagbomb.Value = true
  1431. end))
  1432. end
  1433. end
  1434. end
  1435. function hito(partoz, magn, dmg, debtim, bodyfdire, bodyrot)
  1436. for _, guy in pairs(workspace:GetChildren()) do
  1437. if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and guy:FindFirstChild("HumanoidRootPart"):FindFirstChild("alabo") == nil then
  1438. do
  1439. local humz = guy:FindFirstChild("Humanoid")
  1440. local horp = guy:FindFirstChild("HumanoidRootPart")
  1441. humz:TakeDamage(dmg)
  1442. humz:SetStateEnabled(16, true)
  1443. delay(debtim, function()
  1444. humz:SetStateEnabled(16, true)
  1445. end)
  1446. local db = Instance.new("StringValue")
  1447. db.Name = "alabo"
  1448. db.Parent = horp
  1449. delay(debtim, function()
  1450. db:Destroy()
  1451. end)
  1452. local b = Instance.new("Part")
  1453. nooutline(b)
  1454. b.Size = Vector3.new(0.2, 0.2, 0.2)
  1455. b.Transparency = 0.25
  1456. b.Anchored = true
  1457. b.CanCollide = false
  1458. b.BrickColor = BrickColor.new("Institutional white")
  1459. b.Locked = true
  1460. b.CFrame = horp.CFrame * CFrame.new(rd2(-1, 1), rd2(-2, 2), rd2(-1, 1))
  1461. b.Parent = modz
  1462. local c = Instance.new("SpecialMesh")
  1463. c.MeshType = "Sphere"
  1464. c.Scale = Vector3.new(3.5, 3.5, 3.5)
  1465. c.Parent = b
  1466. game.Debris:AddItem(b, 1)
  1467. if bodyfdire then
  1468. local boopyve = Instance.new("BodyVelocity")
  1469. boopyve.MaxForce = Vector3.new(9999999999999, 9999999999999, 9999999999999)
  1470. boopyve.P = 9999999999
  1471. boopyve.Velocity = bodyfdire
  1472. boopyve.Parent = horp
  1473. game.Debris:AddItem(boopyve, debtim)
  1474. end
  1475. if bodyrot then
  1476. local boopyro = Instance.new("BodyAngularVelocity")
  1477. boopyro.MaxTorque = Vector3.new(999999, 999999, 999999)
  1478. boopyro.P = math.huge
  1479. boopyro.AngularVelocity = bodyrot
  1480. boopyro.Parent = horp
  1481. game.Debris:AddItem(boopyro, debtim)
  1482. end
  1483. local bet = Instance.new("Sound")
  1484. bet.Pitch = rd2(9, 11) / 10
  1485. bet.Volume = rd2(12, 14) / 10
  1486. bet.SoundId = "rbxassetid://305526724"
  1487. bet.Parent = b
  1488. bet:Play()
  1489. coroutine.resume(coroutine.create(function()
  1490. for _ = 1, 5 do
  1491. swait()
  1492. b.Transparency = b.Transparency + 0.175
  1493. c.Scale = c.Scale + Vector3.new(0.8 * dmg, 0.8 * dmg, 0.8 * dmg)
  1494. end
  1495. end))
  1496. end
  1497. end
  1498. end
  1499. end
  1500. function cleannoobs()
  1501. for _, nib in pairs(workspace:GetChildren()) do
  1502. coroutine.resume(coroutine.create(function()
  1503. if nib.Name == "Noob" then
  1504. if nib:FindFirstChild("HumanoidRootPart") then
  1505. local g = Instance.new("Part")
  1506. g.CanCollide, g.Anchored = false, true
  1507. g.Transparency = 1
  1508. g.CFrame = nib:FindFirstChild("HumanoidRootPart").CFrame
  1509. g.Parent = workspace
  1510. game.Debris:AddItem(g, 3.5)
  1511. local sou = Instance.new("Sound")
  1512. sou.Pitch = math.random(7, 11) / 10
  1513. sou.Volume = 0.8
  1514. sou.SoundId = "rbxassetid://111124523"
  1515. sou.Parent = g
  1516. local pe = Instance.new("ParticleEmitter")
  1517. pe.Acceleration = Vector3.new(0, 8, 0)
  1518. pe.Lifetime = NumberRange.new(1, 1.5)
  1519. pe.Rate = 0.005
  1520. pe.RotSpeed = NumberRange.new(-30, 30)
  1521. pe.Rotation = NumberRange.new(0, 360)
  1522. pe.Size = NumberSequence.new({
  1523. NumberSequenceKeypoint.new(0, 4.38, 0),
  1524. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  1525. NumberSequenceKeypoint.new(1, 1.48, 0)
  1526. })
  1527. pe.Texture = "rbxassetid://244221440"
  1528. pe.Transparency = NumberSequence.new({
  1529. NumberSequenceKeypoint.new(0, 0, 0),
  1530. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  1531. NumberSequenceKeypoint.new(1, 1, 1)
  1532. })
  1533. pe.ZOffset = 5
  1534. pe.Enabled = true
  1535. pe.VelocitySpread = 360
  1536. pe.Parent = g
  1537. swait(5)
  1538. pe:Emit(6)
  1539. sou:Play()
  1540. end
  1541. nib:Destroy()
  1542. end
  1543. end))
  1544. end
  1545. end
  1546. function animo(yep)
  1547. if yep == true then
  1548. anim.Parent = human
  1549. chr.Animate.Disabled = false
  1550. elseif yep == false then
  1551. chr.Animate.Disabled = true
  1552. anim.Parent = nil
  1553. end
  1554. end
  1555. mouse.KeyDown:connect(function(key)
  1556. if key == "r" then
  1557. test()
  1558. end
  1559. if key == "m" then
  1560. lauf()
  1561. end
  1562. if key == "c" and plr.UserId == 8488617 then
  1563. ham()
  1564. end
  1565. if key == "x" then
  1566. bat()
  1567. end
  1568. if key == "l" and plr.UserId == 8488617 and selected == true then
  1569. spawnnoob(hrp.CFrame * cf(5, 3, -1) * ang(rd(90), 0, 0), cf(0, 0, 0) * ang(rd(-90), 0, 0), 1, true)
  1570. end
  1571. if key == ";" and plr.UserId == 8488617 and selected == true then
  1572. spawnnoob(hrp.CFrame * cf(5, 60, -1) * ang(rd(90), 0, 0), cf(0, 0, 0) * ang(rd(-90), 0, 0), 10, true)
  1573. end
  1574. if key == "k" and plr.UserId == 8488617 and selected == true then
  1575. spawnnoob(hrp.CFrame * cf(5, 3, -1) * ang(rd(90), 0, 0), cf(0, 0, 0) * ang(rd(-90), 0, 0), 1, false)
  1576. end
  1577. if key == "p" then
  1578. cleannoobs()
  1579. end
  1580. if key == "z" then
  1581. if selected == false or activu == true then
  1582. return
  1583. end
  1584. if human.WalkSpeed == 25 then
  1585. human.WalkSpeed = 70
  1586. human.JumpPower = 75
  1587. else
  1588. human.WalkSpeed = 25
  1589. human.JumpPower = 50
  1590. end
  1591. end
  1592. end)
  1593. tool.Equipped:connect(function()
  1594. selected = true
  1595. end)
  1596. tool.Unequipped:connect(function()
  1597. selected = false
  1598. end)
  1599. animo(false)
  1600. human.WalkSpeed = 25
  1601. sine = 0
  1602. charge = 1
  1603. cos = math.cos
  1604. game:GetService("RunService").RenderStepped:connect(function()
  1605. if ragged == false and activu == false then
  1606. local checkfloor = Ray.new(hrp.Position, Vector3.new(0, -5, 0))
  1607. local checkpart = workspace:FindPartOnRayWithIgnoreList(checkfloor, {chr}, false, false)
  1608. local checkstate = human:GetState()
  1609. if checkstate.Value == 13 then
  1610. animpose = "Sitting"
  1611. elseif hrp.Velocity.y > 1 and checkpart == nil then
  1612. animpose = "Jumping"
  1613. elseif hrp.Velocity.y < -1 and checkpart == nil then
  1614. animpose = "Falling"
  1615. elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude < 2 then
  1616. animpose = "Idle"
  1617. elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude < 40 then
  1618. animpose = "Walking"
  1619. elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude > 40 then
  1620. animpose = "TooFast"
  1621. end
  1622. if animpose == "Idle" then
  1623. sine = sine + charge
  1624. lerpz(RJ, "C0", RJC0 * cf(0.05 * cos(sine / 40), 0, -0.05 - 0.05 * cos(sine / 20)) * ang(rd(0), rd(0), rd(0)), 0.3)
  1625. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(4 + 2 * cos(sine / 20)), rd(0), rd(0)), 0.3)
  1626. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(8 * cos(sine / 80)), rd(0), rd(8 * cos(sine / 80))), 0.3)
  1627. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1628. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(8 * cos(sine / 80)), rd(0), rd(8 * cos(sine / 80))), 0.3)
  1629. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1630. lerpz(RH, "C0", RHC0 * cf(0, 0.05 + 0.05 * cos(sine / 20), 0.05 * cos(sine / 40)) * ang(rd(-5), rd(-5), rd(1)), 0.3)
  1631. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1632. lerpz(LH, "C0", LHC0 * cf(0, 0.05 + 0.05 * cos(sine / 20), -0.05 * cos(sine / 40)) * ang(rd(-5), rd(5), rd(1)), 0.3)
  1633. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1634. end
  1635. if animpose == "Walking" then
  1636. sine = sine + charge
  1637. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.025 * cos(sine / 4)) * ang(rd(-5), math.sin(hrp.RotVelocity.Y / 30), math.sin(hrp.RotVelocity.Y / 5)), 0.3)
  1638. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-2), rd(0), rd(0)), 0.3)
  1639. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(5 * cos(sine / 5)), rd(-20 * cos(sine / 5)), rd(90 * cos(sine / 5))), 0.6)
  1640. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1641. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-5 * cos(sine / 5)), rd(-20 * cos(sine / 5)), rd(90 * cos(sine / 5))), 0.6)
  1642. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1643. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(-1 - 1 * cos(sine / 60)), rd(-90 * cos(sine / 5))), 0.6)
  1644. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1645. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(1 - 1 * cos(sine / 60)), rd(-90 * cos(sine / 5))), 0.6)
  1646. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1647. end
  1648. if animpose == "Jumping" then
  1649. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-5), rd(0), rd(0)), 0.3)
  1650. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(0)), 0.3)
  1651. lerpz(RS, "C0", RSC0 * cf(0, -0.5, 0.2) * ang(rd(-70), rd(-5), rd(-20)), 0.3)
  1652. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1653. lerpz(LS, "C0", LSC0 * cf(0, -0.5, 0.2) * ang(rd(-70), rd(5), rd(20)), 0.3)
  1654. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1655. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-20), rd(-20), rd(-20)), 0.3)
  1656. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1657. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-20), rd(20), rd(15)), 0.3)
  1658. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1659. end
  1660. if animpose == "Falling" then
  1661. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(0)), 0.3)
  1662. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(0)), 0.3)
  1663. lerpz(RS, "C0", RSC0 * cf(0, 0, 0.6) * ang(rd(-150), rd(-5), rd(-20)), 0.3)
  1664. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1665. lerpz(LS, "C0", LSC0 * cf(0, 0, 0.6) * ang(rd(-150), rd(5), rd(20)), 0.3)
  1666. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1667. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-15), rd(-15), rd(-20)), 0.3)
  1668. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1669. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-15), rd(15), rd(15)), 0.3)
  1670. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1671. end
  1672. if animpose == "TooFast" then
  1673. sine = sine + charge
  1674. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.35 * cos(sine / 2)) * ang(rd(-20), math.sin(hrp.RotVelocity.Y / 20), math.sin(hrp.RotVelocity.Y / 2)), 0.3)
  1675. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-15 - 5 * cos(sine / 2)), rd(0), rd(0)), 0.3)
  1676. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(5 * cos(sine / 3)), rd(-120 * cos(sine / 3)), rd(110 * cos(sine / 3))), 0.6)
  1677. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1678. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-5 * cos(sine / 3)), rd(-120 * cos(sine / 3)), rd(110 * cos(sine / 3))), 0.6)
  1679. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1680. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(-1 - 1 * cos(sine / 60)), rd(-110 * cos(sine / 3))), 0.6)
  1681. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1682. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(1 - 1 * cos(sine / 60)), rd(-110 * cos(sine / 3))), 0.6)
  1683. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1684. end
  1685. if animpose == "Sitting" then
  1686. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1687. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1688. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
  1689. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1690. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
  1691. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1692. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
  1693. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1694. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
  1695. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1696. end
  1697. end
  1698. end)
  1699. end)
  1700.  
  1701. HubbianV02.Name = "HubbianV02"
  1702. HubbianV02.Parent = ScriptFrame
  1703. HubbianV02.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  1704. HubbianV02.BorderColor3 = Color3.new(0.227451, 0.854902, 0)
  1705. HubbianV02.BorderSizePixel = 2
  1706. HubbianV02.Position = UDim2.new(0.0222827662, 0, 0.618696094, 0)
  1707. HubbianV02.Size = UDim2.new(0, 133, 0, 30)
  1708. HubbianV02.Font = Enum.Font.SciFi
  1709. HubbianV02.Text = "WIP"
  1710. HubbianV02.TextColor3 = Color3.new(1, 1, 1)
  1711. HubbianV02.TextSize = 25
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement