Advertisement
Ben_Scripts343

Fe Hat Hub made by Synthesize_OGz

May 3rd, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.00 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Hub = Instance.new("Frame")
  3. local Main = Instance.new("ScrollingFrame")
  4. local boot = Instance.new("TextButton")
  5. local stand = Instance.new("TextButton")
  6. local heels = Instance.new("TextButton")
  7. local hat = Instance.new("TextButton")
  8. local death = Instance.new("TextButton")
  9. local bomb = Instance.new("TextButton")
  10. local info = Instance.new("TextLabel")
  11. local info_2 = Instance.new("TextLabel")
  12. local info_3 = Instance.new("TextLabel")
  13. local info_4 = Instance.new("TextLabel")
  14. local info_5 = Instance.new("TextLabel")
  15. local hgsduyufdf = Instance.new("TextLabel")
  16.  
  17. ScreenGui.Parent = game.CoreGui
  18. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. Hub.Name = "Hub"
  21. Hub.Parent = ScreenGui
  22. Hub.BackgroundColor3 = Color3.new(0.819608, 0.819608, 0.819608)
  23. Hub.BorderSizePixel = 0
  24. Hub.Position = UDim2.new(0.585766435, 0, 0.428842515, 0)
  25. Hub.Size = UDim2.new(0, 361, 0, 244)
  26. Hub.Active = true
  27. Hub.Draggable = true
  28. Hub.Visible = true
  29.  
  30. Main.Name = "Main"
  31. Main.Parent = Hub
  32. Main.Active = true
  33. Main.BackgroundColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  34. Main.BorderSizePixel = 0
  35. Main.Position = UDim2.new(-0.00271817786, 0, 0.118503571, 0)
  36. Main.Size = UDim2.new(0, 363, 0, 218)
  37. Main.CanvasSize = UDim2.new(0, 0, 2.20000005, 0)
  38.  
  39. boot.Name = "boot"
  40. boot.Parent = Main
  41. boot.BackgroundColor3 = Color3.new(0.262745, 0.482353, 0.890196)
  42. boot.BorderColor3 = Color3.new(0.290196, 0.537255, 0.996078)
  43. boot.BorderSizePixel = 2
  44. boot.Position = UDim2.new(0.0495867804, 0, 0.0384127274, 0)
  45. boot.Size = UDim2.new(0, 139, 0, 21)
  46. boot.Font = Enum.Font.RobotoMono
  47. boot.Text = "Fe Boot"
  48. boot.TextColor3 = Color3.new(0, 0, 0)
  49. boot.TextSize = 16
  50. boot.MouseButton1Click:connect(function()
  51. --One man boot
  52. --KeyBind: E [Boot]
  53. --Hair: Pal Hair [Bacon Hair]
  54.  
  55. local Player = game:GetService("Players").LocalPlayer
  56. local Character = Player.Character
  57. local Hats = { Ex1 = Character:WaitForChild("Pal Hair"),
  58. }
  59.  
  60. for i, v in next, Hats do
  61. v.Handle.AccessoryWeld:Remove()
  62. for _,mesh in next, v:GetDescendants()do
  63. if mesh:IsA("Mesh") or mesh:IsA("SpecialMesh") then
  64. mesh:Remove()
  65. end
  66. end
  67. end
  68.  
  69. local function p(i, v)
  70. local att0 = Instance.new("Attachment", i)
  71. local att1 = Instance.new("Attachment", v)
  72. att0.Position = Vector3.new(0,0,0)
  73. att1.Position = Vector3.new(0,0,0)
  74. local AP = Instance.new("AlignPosition", i)
  75. AP.Attachment0 = att0
  76. AP.Attachment1 = att1
  77. AP.RigidityEnabled = true
  78. local AO = Instance.new("AlignOrientation", i)
  79. AO.Attachment0 = att0
  80. AO.Attachment1 = att1
  81. AO.RigidityEnabled = true
  82. end
  83.  
  84. p(Hats.Ex1.Handle, Character["Left Leg"])
  85.  
  86. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  87.  
  88. Character:WaitForChild("Left Leg").Attachment.Name = "Attachment1"
  89.  
  90. Character:WaitForChild("Left Leg").Attachment1.Position = Vector3.new(0,0,0)
  91.  
  92. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
  93. if KeyPressed == "e" then
  94. Character:WaitForChild("Left Leg").Attachment1.Position = Vector3.new(0,-1,0)
  95. end
  96. end)
  97. end)
  98.  
  99. stand.Name = "stand"
  100. stand.Parent = Main
  101. stand.BackgroundColor3 = Color3.new(0.262745, 0.482353, 0.890196)
  102. stand.BorderColor3 = Color3.new(0.290196, 0.537255, 0.996078)
  103. stand.BorderSizePixel = 2
  104. stand.Position = UDim2.new(0.542699754, 0, 0.0384127274, 0)
  105. stand.Size = UDim2.new(0, 139, 0, 21)
  106. stand.Font = Enum.Font.RobotoMono
  107. stand.Text = "Fe Stand"
  108. stand.TextColor3 = Color3.new(0, 0, 0)
  109. stand.TextSize = 16
  110. stand.MouseButton1Click:connect(function()
  111. --Hair [Pal Hair, Roblox Girl Hair, Blonde spiked hair, Lavender Updo, BrownHair, Robloxclassicred]
  112. -- fe stand
  113. --z sit
  114. -- f stand
  115. -- e sus
  116. local Player = game:GetService("Players").LocalPlayer
  117. local Character = Player.Character
  118. local Hats = { Ex1 = Character:WaitForChild("Pal Hair"),
  119. Ex2 = Character:WaitForChild("Pink Hair"),
  120. Ex3 = Character:WaitForChild("MessyHair"),
  121. Ex4 = Character:WaitForChild("LavanderHair"),
  122. Ex5 = Character:WaitForChild("Robloxclassicred"),
  123. Ex6 = Character:WaitForChild("Hat1"),
  124. }
  125.  
  126. for i,v in next, Hats do
  127. v.Handle.AccessoryWeld:Remove()
  128. for _,mesh in next, v:GetDescendants() do
  129. if mesh:IsA("Mesh") or mesh:IsA("SpecialMesh") then
  130. mesh:Remove()
  131. end
  132. end
  133. end
  134.  
  135. local function p(i, v)
  136. local att0 = Instance.new("Attachment", i)
  137. local att1 = Instance.new("Attachment", v)
  138. att0.Position = Vector3.new(0,0,0)
  139. att1.Position = Vector3.new(0,0,0)
  140. local AP = Instance.new("AlignPosition", i)
  141. AP.Attachment1 = att1
  142. AP.Attachment0 = att0
  143. AP.RigidityEnabled = true
  144. local AO = Instance.new("AlignOrientation", i)
  145. AO.Attachment1 = att1
  146. AO.Attachment0 = att0
  147. AO.RigidityEnabled = true
  148. end
  149.  
  150. p(Hats.Ex1.Handle, Character["Torso"])
  151. p(Hats.Ex2.Handle, Character["Torso"])
  152. p(Hats.Ex3.Handle, Character["Torso"])
  153. p(Hats.Ex4.Handle, Character["Torso"])
  154. p(Hats.Ex5.Handle, Character["Torso"])
  155. p(Hats.Ex6.Handle, Character["Torso"])
  156.  
  157. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  158. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  159. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  160. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  161. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  162. Hats.Ex6.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  163.  
  164. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment1"
  165. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment2"
  166. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment3"
  167. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment4"
  168. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment5"
  169. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment6"
  170.  
  171. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(2.9,5,1.5)--right arm robot
  172. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(1.1,5,1.5)--torso2 robot
  173. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,5.18,1.5)--left arm robot
  174. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(1.8,5,1.5)--torso1 robot
  175. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0.93,2.88,1.5)--left leg
  176. Character:WaitForChild("Torso").Attachment6.Position = Vector3.new(2,2.89,1.5)--right leg
  177.  
  178. -- sit animation
  179. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
  180. if KeyPressed == "z" then -- sitting
  181. --position
  182. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(1.47,4.3,0)--right arm robot
  183. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(-0.56,4.3,0)--torso2 robot
  184. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(-1.64,4.47,0)--left arm robot
  185. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0.42,4.3,0)--torso1 robot
  186. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(-0.55,2.3,-0.87)--left leg
  187. Character:WaitForChild("Torso").Attachment6.Position = Vector3.new(0.48,2.3,-0.87)--right leg
  188. -- rotation
  189. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(-90,0,0) --right arm
  190. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(-90,0,0) --torso2
  191. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(-90,0,0) --left arm
  192. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(-90,0,0) --torso1
  193. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(0,0,0) --left leg
  194. Hats.Ex6.Handle.Attachment.Rotation = Vector3.new(0,0,0) --right leg
  195. end
  196. end
  197. )
  198. -- stand animation
  199. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
  200. if KeyPressed == "f" then -- standing
  201.  
  202. --position
  203. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(2.9,5,1.5)--right arm robot
  204. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(1.1,5,1.5)--torso2 robot
  205. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,5.18,1.5)--left arm robot
  206. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(1.8,5,1.5)--torso1 robot
  207. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0.93,2.88,1.5)--left leg
  208. Character:WaitForChild("Torso").Attachment6.Position = Vector3.new(2,2.89,1.5)--right leg
  209.  
  210.  
  211. --rotation
  212. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  213. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  214. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  215. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  216. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  217. Hats.Ex6.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  218. end
  219. end
  220. )
  221.  
  222. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
  223. if KeyPressed == "e" then -- sus
  224.  
  225. --position
  226. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(0,3.7,1.5)--right arm robot
  227. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,7,1.5)--torso2 robot
  228. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,7.87,1.5)--left arm robot
  229. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,6,1.5)--torso1 robot
  230. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,7,1.5)--left leg
  231. Character:WaitForChild("Torso").Attachment6.Position = Vector3.new(0,7,1.5)--right leg
  232.  
  233. --rotation
  234. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  235. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  236. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  237. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  238. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  239. Hats.Ex6.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  240. end
  241. end
  242. )
  243. end)
  244.  
  245. heels.Name = "heels"
  246. heels.Parent = Main
  247. heels.BackgroundColor3 = Color3.new(0.262745, 0.482353, 0.890196)
  248. heels.BorderColor3 = Color3.new(0.290196, 0.537255, 0.996078)
  249. heels.BorderSizePixel = 2
  250. heels.Position = UDim2.new(0.0495868027, 0, 0.305072308, 0)
  251. heels.Size = UDim2.new(0, 139, 0, 21)
  252. heels.Font = Enum.Font.RobotoMono
  253. heels.Text = "Fe Heels"
  254. heels.TextColor3 = Color3.new(0, 0, 0)
  255. heels.TextSize = 16
  256. heels.MouseButton1Click:connect(function()
  257.  
  258. --Hats [Pal Hair, Roblox Girl Hair]
  259. -- High Heels
  260. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 1.75
  261. local Player = game:GetService("Players").LocalPlayer
  262. local Character = Player.Character
  263. local Hats = { Ex1 = Character:WaitForChild("Pal Hair"),
  264. Ex2 = Character:WaitForChild("Pink Hair"),
  265. }
  266.  
  267. for i,v in next, Hats do
  268. v.Handle.AccessoryWeld:Remove()
  269. for _,mesh in next, v:GetDescendants() do
  270. if mesh:IsA("Mesh") or mesh:IsA("SpecialMesh") then
  271. mesh:Remove()
  272. end
  273. end
  274. end
  275.  
  276. local function p(i, v)
  277. local att0 = Instance.new("Attachment", i)
  278. local att1 = Instance.new("Attachment", v)
  279. att0.Position = Vector3.new(0,0,0)
  280. att1.Position = Vector3.new(0,0,0)
  281. local AP = Instance.new("AlignPosition", i)
  282. AP.Attachment1 = att1
  283. AP.Attachment0 = att0
  284. AP.RigidityEnabled = true
  285. local AO = Instance.new("AlignOrientation", i)
  286. AO.Attachment1 = att1
  287. AO.Attachment0 = att0
  288. AO.RigidityEnabled = true
  289. end
  290.  
  291. p(Hats.Ex1.Handle, Character["Left Leg"])
  292. p(Hats.Ex2.Handle, Character["Right Leg"])
  293.  
  294. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  295. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  296.  
  297.  
  298. Character:WaitForChild("Left Leg"):FindFirstChild("Attachment").Name = "Attachment1"
  299. Character:WaitForChild("Right Leg"):FindFirstChild("Attachment").Name = "Attachment2"
  300.  
  301.  
  302. Character:WaitForChild("Left Leg").Attachment1.Position = Vector3.new(0,-2,0)--right arm robot
  303. Character:WaitForChild("Right Leg").Attachment2.Position = Vector3.new(0,-2,0)--Left Leg2 robot
  304. end)
  305.  
  306. hat.Name = "hat"
  307. hat.Parent = Main
  308. hat.BackgroundColor3 = Color3.new(0.262745, 0.482353, 0.890196)
  309. hat.BorderColor3 = Color3.new(0.290196, 0.537255, 0.996078)
  310. hat.BorderSizePixel = 2
  311. hat.Position = UDim2.new(0.542699754, 0, 0.305072308, 0)
  312. hat.Size = UDim2.new(0, 139, 0, 21)
  313. hat.Font = Enum.Font.RobotoMono
  314. hat.Text = "Fe Hats [HAT HUB]"
  315. hat.TextColor3 = Color3.new(0, 0, 0)
  316. hat.TextSize = 16
  317. hat.MouseButton1Click:connect(function()
  318.  
  319. -- Hats hub remake
  320. -- Hats [Pal Hair, Roblox Girl Hair, Blonde spiked hair, Lavender Updo, BrownHair, Robloxclassicred]
  321. -- r [I] t[Face] b[Typing]
  322. local Player = game.Players.LocalPlayer
  323. local Character = Player.Character
  324.  
  325. local Hats = {Ex1 = Character:WaitForChild("Pink Hair"),
  326. Ex2 = Character:WaitForChild("Hat1"),
  327. Ex3 = Character:WaitForChild("Robloxclassicred"),
  328. Ex4 = Character:WaitForChild("MessyHair"),
  329. Ex5 = Character:WaitForChild("Pal Hair"),
  330. }
  331.  
  332. for i, v in next, Hats do
  333. v.Handle.AccessoryWeld:Remove()
  334. for i, b in next, v:GetDescendants() do
  335. if b:IsA("Mesh") or b:IsA("SpecialMesh") then
  336. b:Remove()
  337. end
  338. end
  339. end
  340.  
  341. local function align(i, v)
  342. local att0 = Instance.new("Attachment", i)
  343. local att1 = Instance.new("Attachment", v)
  344. att0.Position = Vector3.new(0,0,0)
  345. att1.Position = Vector3.new(0,0,0)
  346. local AP = Instance.new("AlignPosition", i)
  347. AP.Attachment0 = att0
  348. AP.Attachment1 = att1
  349. AP.RigidityEnabled = true
  350. local AO = Instance.new("AlignOrientation", i)
  351. AO.Attachment1 = att1
  352. AO.Attachment0 = att0
  353. AO.RigidityEnabled = true
  354. end
  355.  
  356. align(Hats.Ex1.Handle, Character["Torso"])
  357. align(Hats.Ex2.Handle, Character["Torso"])
  358. align(Hats.Ex3.Handle, Character["Torso"])
  359. align(Hats.Ex4.Handle, Character["Torso"])
  360. align(Hats.Ex5.Handle, Character["Torso"])
  361.  
  362. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  363. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  364. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  365. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  366. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  367.  
  368. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment1"
  369. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment2"
  370. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment3"
  371. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment4"
  372. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment5"
  373.  
  374. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(0,0,0)
  375. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,0,0)
  376. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,0,0)
  377. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,0,0)
  378. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,0,0)
  379.  
  380. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(Key)
  381. if Key == "r" then -- I
  382. --position
  383. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(0,7.8,2.1)
  384. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,6,2.1)
  385. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,4.5,2.1)
  386. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,8.4,2.1)--eyese
  387. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,4.1,2.1)--eysey
  388.  
  389. --rotation
  390. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  391. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  392. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  393. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(0,-90,0)--eyes
  394. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(0,-90,0)-- eyes
  395. end
  396. end
  397. )
  398.  
  399. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(Key)
  400. if Key == "t" then -- face
  401. --position
  402. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(0,5,2.1)
  403. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(-2,5,2.1)
  404. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(2,5,2.1)
  405. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(-1.5,7,2.1)--eyes
  406. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(1.5,7,2.1)--eyes
  407.  
  408. --rotation
  409. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(0,-90,0)
  410. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(0,-90,0)
  411. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(0,-90,0)
  412. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(-90,0,0)--eyse
  413. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(-90,0,0)--eyes
  414. end
  415. end
  416. )
  417.  
  418. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(Key)
  419. if Key == "b" then -- typing
  420. --position
  421. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(2.6,5,2.1)
  422. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,5,2.1)
  423. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(-2.32,5,2.1)
  424. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,-5,0)--eyes
  425. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,-5,0)--eyes
  426.  
  427. --rotation
  428. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(0,-90,0)
  429. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(0,-90,0)
  430. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(0,-90,0)
  431. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(-90,0,0)--eyse
  432. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(-90,0,0)--eyes
  433. wait(0.6)
  434. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(2.6,6,2.1)
  435. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,5,2.1)
  436. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(-2.32,5,2.1)
  437. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,-5,0)--eyes
  438. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,-5,0)--eyes
  439. wait(0.4)
  440. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(2.6,5,2.1)
  441. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,6,2.1)
  442. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(-2.32,5,2.1)
  443. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,-5,0)--eyes
  444. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,-5,0)--eyes
  445. wait(0.7)
  446.  
  447. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(2.6,5,2.1)
  448. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,5,2.1)
  449. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(-2.32,6,2.1)
  450. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,-5,0)--eyes
  451. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,-5,0)--eyes
  452.  
  453. wait(0.9)
  454.  
  455. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(2.6,5,2.1)
  456. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,5,2.1)
  457. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(-2.32,5,2.1)
  458. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,-5,0)--eyes
  459. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,-5,0)--eyes
  460. end
  461. end
  462. )
  463. end)
  464.  
  465. death.Name = "death"
  466. death.Parent = Main
  467. death.BackgroundColor3 = Color3.new(0.262745, 0.482353, 0.890196)
  468. death.BorderColor3 = Color3.new(0.290196, 0.537255, 0.996078)
  469. death.BorderSizePixel = 2
  470. death.Position = UDim2.new(0.542699754, 0, 0.59036088, 0)
  471. death.Size = UDim2.new(0, 139, 0, 21)
  472. death.Font = Enum.Font.RobotoMono
  473. death.Text = "Fe Pole Shanked"
  474. death.TextColor3 = Color3.new(0, 0, 0)
  475. death.TextSize = 16
  476. death.MouseButton1Click:connect(function()
  477. --whole script
  478. -- e[die]
  479. ---- Hats [Pal Hair, Roblox Girl Hair, Blonde spiked hair, Lavender Updo, BrownHair, Robloxclassicred]
  480. local Player = game.Players.LocalPlayer
  481. local Character = Player.Character
  482.  
  483. local Hats = { Ex1 = Character:WaitForChild("Pink Hair"),
  484. Ex2 = Character:WaitForChild("Hat1"),
  485. Ex3 = Character:WaitForChild("Robloxclassicred"),
  486. Ex4 = Character:WaitForChild("MessyHair"),
  487. Ex5 = Character:WaitForChild("Pal Hair"),
  488. }
  489.  
  490. for i, v in next, Hats do
  491. v.Handle.AccessoryWeld:Remove()
  492. for i, b in next, v:GetDescendants() do
  493. if b:IsA("Mesh") or b:IsA("SpecialMesh") then
  494. b:Remove()
  495. end
  496. end
  497. end
  498.  
  499. local function align(i, v)
  500. local att0 = Instance.new("Attachment", i)
  501. local att1 = Instance.new("Attachment", v)
  502. att1.Position = Vector3.new(0,0,0)
  503. att0.Position = Vector3.new(0,0,0)
  504. local AP = Instance.new("AlignPosition", i)
  505. AP.Attachment1 = att1
  506. AP.Attachment0 = att0
  507. AP.RigidityEnabled = true
  508. local AO = Instance.new("AlignOrientation", i)
  509. AO.Attachment0 = att0
  510. AO.Attachment1 = att1
  511. AO.RigidityEnabled = true
  512. end
  513.  
  514. align(Hats.Ex1.Handle, Character["Torso"])
  515. align(Hats.Ex2.Handle, Character["Torso"])
  516. align(Hats.Ex3.Handle, Character["Torso"])
  517. align(Hats.Ex4.Handle, Character["Torso"])
  518. align(Hats.Ex5.Handle, Character["Torso"])
  519.  
  520.  
  521. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  522. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  523. Hats.Ex3.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  524. Hats.Ex4.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  525. Hats.Ex5.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  526.  
  527. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment1"
  528. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment2"
  529. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment3"
  530. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment4"
  531. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment5"
  532.  
  533. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(0,0,-7)
  534. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,0,-6)
  535. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,0,-5)
  536. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,0,-4)
  537. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,0,-3)
  538.  
  539. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(Key)
  540. if Key == "e" then
  541. wait(2)
  542. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(0,0,1)
  543. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0,0,0)
  544. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,0,-1)
  545. Character:WaitForChild("Torso").Attachment4.Position = Vector3.new(0,0,-2)
  546. Character:WaitForChild("Torso").Attachment5.Position = Vector3.new(0,0,-3)
  547. wait(1)
  548. game.Workspace:WaitForChild("non"):BreakJoints()
  549. end
  550. end
  551. )
  552.  
  553. -- bypass script
  554. Bypass = "death"
  555. loadstring(game:GetObjects("rbxassetid://5325226148")[1].Source)()
  556. plr = game.Players.LocalPlayer
  557. dead = false
  558. char = plr.Character
  559.  
  560. mouse = plr:GetMouse()
  561. lt = true
  562. ltt = false
  563.  
  564.  
  565. rarm = char["Right Arm"]
  566. larm = char["Left Arm"]
  567. torso = char.Torso
  568.  
  569.  
  570. l = Instance.new("Attachment",larm)
  571. l.Rotation = Vector3.new(0,0,20)
  572. l.Position = Vector3.new(1.5,0.6,0)
  573.  
  574. r = Instance.new("Attachment",rarm)
  575. r.Rotation = Vector3.new(0,0,-20)
  576. r.Position = Vector3.new(-1.5,0.6,0)
  577.  
  578. t = Instance.new("Attachment",torso)
  579. --rarm
  580. rap = Instance.new("AlignPosition",rarm)
  581. rap.Attachment0 = r
  582. rap.Attachment1 = t
  583. rap.RigidityEnabled = true
  584.  
  585. rao = Instance.new("AlignOrientation",rarm)
  586. rao.Attachment0 = r
  587. rao.Attachment1 = t
  588. rao.RigidityEnabled = true
  589.  
  590. --larm
  591.  
  592.  
  593.  
  594.  
  595. lap = Instance.new("AlignPosition",larm)
  596. lap.Attachment0 = l
  597. lap.Attachment1 = t
  598. lap.RigidityEnabled = true
  599.  
  600. lao = Instance.new("AlignOrientation",larm)
  601. lao.Attachment0 = l
  602. lao.Attachment1 = t
  603. lao.RigidityEnabled = true
  604.  
  605.  
  606.  
  607. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
  608. if KeyPressed == "e" then
  609. wait(0.2)
  610. l.Position = Vector3.new(1,1,0.5)
  611. l.Rotation = Vector3.new(-90,20,0)
  612. wait(0.5)
  613. l.Position = Vector3.new(1.5,0.6,0)
  614. l.Rotation = Vector3.new(0,0,20)
  615. end
  616. end)
  617. end)
  618.  
  619. bomb.Name = "bomb"
  620. bomb.Parent = Main
  621. bomb.BackgroundColor3 = Color3.new(0.262745, 0.482353, 0.890196)
  622. bomb.BorderColor3 = Color3.new(0.290196, 0.537255, 0.996078)
  623. bomb.BorderSizePixel = 2
  624. bomb.Position = UDim2.new(0.0495868027, 0, 0.59036088, 0)
  625. bomb.Size = UDim2.new(0, 139, 0, 21)
  626. bomb.Font = Enum.Font.RobotoMono
  627. bomb.Text = "Fe Bomb"
  628. bomb.TextColor3 = Color3.new(0, 0, 0)
  629. bomb.TextSize = 16
  630. bomb.MouseButton1Click:connect(function()
  631. -- fe bomb
  632. -- e[explode]
  633. --Hats [Pal Hair, Roblox Girl Hair, Blonde spiked hair, Lavender Updo, BrownHair, Robloxclassicred, Happy New Year Mouse]
  634. local hat = game.Players.LocalPlayer.Character.MeshPartAccessory
  635. local Player = game.Players.LocalPlayer
  636. local Character = Player.Character
  637.  
  638. local Hats = { Ex1 = Character:WaitForChild("Pink Hair"),
  639. Ex2 = Character:WaitForChild("Hat1"),
  640. }
  641.  
  642. for i, v in next, Hats do
  643. v.Handle.AccessoryWeld:Remove()
  644. for i, b in next, v:GetDescendants() do
  645. if b:IsA("Mesh") or b:IsA("SpecialMesh") then
  646. b:Remove()
  647. end
  648. end
  649. end
  650.  
  651. hat.Handle.AccessoryWeld:Remove()
  652. wait(0.5)
  653. local function align(i, v)
  654. local att0 = Instance.new("Attachment", i)
  655. local att1 = Instance.new("Attachment", v)
  656. att1.Position = Vector3.new(0,0,0)
  657. att0.Position = Vector3.new(0,0,0)
  658. local AP = Instance.new("AlignPosition", i)
  659. AP.Attachment1 = att1
  660. AP.Attachment0 = att0
  661. AP.RigidityEnabled = true
  662. local AO = Instance.new("AlignOrientation", i)
  663. AO.Attachment0 = att0
  664. AO.Attachment1 = att1
  665. AO.RigidityEnabled = true
  666. end
  667.  
  668. align(Hats.Ex1.Handle, Character["Torso"])
  669. align(Hats.Ex2.Handle, Character["Torso"])
  670. align(hat.Handle, Character["Torso"])
  671.  
  672. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  673. Hats.Ex2.Handle.Attachment.Rotation = Vector3.new(-90,0,0)
  674. hat.Handle.Attachment.Rotation = Vector3.new(0,0,0)
  675.  
  676. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment1"
  677. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment2"
  678. Character:WaitForChild("Torso"):FindFirstChild("Attachment").Name = "Attachment3"
  679.  
  680. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(-0.4,0.2,-0.8)
  681. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(0.5,0.2,-0.8)
  682. Character:WaitForChild("Torso").Attachment3.Position = Vector3.new(0,0.2,-0.8)
  683.  
  684. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(Key)
  685. if Key == "e" then
  686. wait(0.1)
  687. Character:WaitForChild("Torso").Attachment1.Position = Vector3.new(-0.8,0.2,-0.9)
  688. Character:WaitForChild("Torso").Attachment2.Position = Vector3.new(1,0.2,-0.9)
  689. end
  690. end
  691. )
  692. wait(2)
  693. Bypass = "death"
  694. loadstring(game:GetObjects("rbxassetid://5325226148")[1].Source)()
  695. plr = game.Players.LocalPlayer
  696. dead = false
  697. char = plr.Character
  698.  
  699. mouse = plr:GetMouse()
  700. lt = true
  701. ltt = false
  702.  
  703.  
  704. rarm = char["Right Arm"]
  705. larm = char["Left Arm"]
  706. torso = char.Torso
  707.  
  708.  
  709. l = Instance.new("Attachment",larm)
  710. l.Rotation = Vector3.new(0,0,0)
  711. l.Position = Vector3.new(1.5,-1,0)
  712.  
  713. r = Instance.new("Attachment",rarm)
  714. r.Rotation = Vector3.new(0,0,0)
  715. r.Position = Vector3.new(-1.5,-1,0)
  716.  
  717. t = Instance.new("Attachment",torso)
  718. --rarm
  719. rap = Instance.new("AlignPosition",rarm)
  720. rap.Attachment0 = r
  721. rap.Attachment1 = t
  722. rap.RigidityEnabled = true
  723.  
  724. rao = Instance.new("AlignOrientation",rarm)
  725. rao.Attachment0 = r
  726. rao.Attachment1 = t
  727. rao.RigidityEnabled = true
  728.  
  729. --larm
  730.  
  731.  
  732.  
  733.  
  734. lap = Instance.new("AlignPosition",larm)
  735. lap.Attachment0 = l
  736. lap.Attachment1 = t
  737. lap.RigidityEnabled = true
  738.  
  739. lao = Instance.new("AlignOrientation",larm)
  740. lao.Attachment0 = l
  741. lao.Attachment1 = t
  742. lao.RigidityEnabled = true
  743.  
  744.  
  745.  
  746. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
  747. if KeyPressed == "e" then
  748. wait(0.8)
  749. game.Workspace:WaitForChild("non").Humanoid.Health = 0
  750. game.Workspace:WaitForChild("non"):BreakJoints()
  751. end
  752. end)
  753. end)
  754.  
  755. info.Name = "info"
  756. info.Parent = Main
  757. info.BackgroundColor3 = Color3.new(1, 1, 1)
  758. info.Position = UDim2.new(0.0495867766, 0, 0.0953784958, 0)
  759. info.Size = UDim2.new(0, 145, 0, 65)
  760. info.Font = Enum.Font.SourceSans
  761. info.Text = "Press e[boot]"
  762. info.TextColor3 = Color3.new(0, 0, 0)
  763. info.TextSize = 13
  764. info.TextWrapped = true
  765.  
  766. info_2.Name = "info"
  767. info_2.Parent = Main
  768. info_2.BackgroundColor3 = Color3.new(1, 1, 1)
  769. info_2.Position = UDim2.new(0.534435272, 0, 0.0953784958, 0)
  770. info_2.Size = UDim2.new(0, 145, 0, 65)
  771. info_2.Font = Enum.Font.SourceSans
  772. info_2.Text = "z[sit], f[stand], e[sus]"
  773. info_2.TextColor3 = Color3.new(0, 0, 0)
  774. info_2.TextSize = 14
  775. info_2.TextWrapped = true
  776.  
  777. info_3.Name = "info"
  778. info_3.Parent = Main
  779. info_3.BackgroundColor3 = Color3.new(1, 1, 1)
  780. info_3.Position = UDim2.new(0.534435272, 0, 0.378537953, 0)
  781. info_3.Size = UDim2.new(0, 145, 0, 65)
  782. info_3.Font = Enum.Font.SourceSans
  783. info_3.Text = "r[i], t[face], b[typing]"
  784. info_3.TextColor3 = Color3.new(0, 0, 0)
  785. info_3.TextSize = 14
  786. info_3.TextWrapped = true
  787.  
  788. info_4.Name = "info"
  789. info_4.Parent = Main
  790. info_4.BackgroundColor3 = Color3.new(1, 1, 1)
  791. info_4.Position = UDim2.new(0.0413223319, 0, 0.669148982, 0)
  792. info_4.Size = UDim2.new(0, 145, 0, 65)
  793. info_4.Font = Enum.Font.SourceSans
  794. info_4.Text = "e[die]"
  795. info_4.TextColor3 = Color3.new(0, 0, 0)
  796. info_4.TextSize = 14
  797. info_4.TextWrapped = true
  798.  
  799. info_5.Name = "info"
  800. info_5.Parent = Main
  801. info_5.BackgroundColor3 = Color3.new(1, 1, 1)
  802. info_5.Position = UDim2.new(0.534435332, 0, 0.669148982, 0)
  803. info_5.Size = UDim2.new(0, 145, 0, 65)
  804. info_5.Font = Enum.Font.SourceSans
  805. info_5.Text = "e[explode]"
  806. info_5.TextColor3 = Color3.new(0, 0, 0)
  807. info_5.TextSize = 14
  808. info_5.TextWrapped = true
  809.  
  810. hgsduyufdf.Name = "hgsduyufdf"
  811. hgsduyufdf.Parent = Hub
  812. hgsduyufdf.BackgroundColor3 = Color3.new(1, 1, 1)
  813. hgsduyufdf.BackgroundTransparency = 1
  814. hgsduyufdf.BorderSizePixel = 0
  815. hgsduyufdf.Position = UDim2.new(-0.00277008303, 0, 0, 0)
  816. hgsduyufdf.Size = UDim2.new(0, 363, 0, 28)
  817. hgsduyufdf.Font = Enum.Font.PermanentMarker
  818. hgsduyufdf.Text = "Bennyxx Scriptz --- Hats & reanimation scripts"
  819. hgsduyufdf.TextColor3 = Color3.new(0, 0, 0)
  820. hgsduyufdf.TextSize = 20
  821.  
  822. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  823. if key == "h" then
  824. Hub.Visible = false
  825. end
  826. end)
  827.  
  828. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  829. if key == "j" then
  830. Hub.Visible = true
  831. end
  832. end)
  833.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement