Advertisement
mathmasterphil

Top Hat

Feb 27th, 2015
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.13 KB | None | 0 0
  1. Player = game:GetService("Players").LocalPlayer
  2. Character = Player.Character
  3. PlayerGui = Player.PlayerGui
  4. Backpack = Player.Backpack
  5. Humanoid = Character.Humanoid
  6. Torso = Character.Torso
  7. Head = Character.Head
  8. LeftArm = Character["Left Arm"]
  9. RightArm = Character["Right Arm"]
  10. LeftLeg = Character["Left Leg"]
  11. RightLeg = Character["Right Leg"]
  12. Neck = Torso["Neck"]
  13. RightShoulder = Torso["Right Shoulder"]
  14. LeftShoulder = Torso["Left Shoulder"]
  15. RightHip = Torso["Right Hip"]
  16. LeftHip = Torso["Left Hip"]
  17. Shieldz = false
  18. Radio = false
  19. Healing = false
  20.  
  21. NeckC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  22. NeckC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  23. LeftShoulderC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  24. LeftShoulderC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  25. RightShoulderC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  26. RightShoulderC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  27. LeftHipC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  28. LeftHipC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  29. RightHipC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  30. RightHipC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  31.  
  32. Stuff = Player.Character:GetChildren()
  33. for i = 1 , #Stuff do
  34. if Stuff[i].Name == "Shirt" or Stuff[i].Name == "Pants" or Stuff[i].className == "Hat" then
  35. Stuff[i]:Remove()
  36. end
  37. end
  38.  
  39.  
  40.  
  41. Bottom = Instance.new("Part")
  42. Bottom.Parent = Character
  43. Bottom.Size = Vector3.new(1,1,1)
  44. Bottom.TopSurface = "Smooth"
  45. Bottom.BottomSurface = "Smooth"
  46. Bottom.CanCollide = false
  47. Bottom.Reflectance = .1
  48. Bottom.FormFactor = "Symmetric"
  49. Bottom.BrickColor = BrickColor.new("Black")
  50. BottomMesh=Instance.new("CylinderMesh")
  51. BottomMesh.Scale=Vector3.new(1.5,.1,1.5)
  52. --BottomMesh.MeshType = "Head"
  53. BottomMesh.Parent=Bottom
  54. Bottom:BreakJoints()
  55. beld = Instance.new("Weld")
  56. beld.Parent = Head
  57. beld.Part0 = Head
  58. beld.Part1 = Bottom
  59. beld.C0 = CFrame.new(0,.5,-0)
  60. Top = Instance.new("Part")
  61. Top.Parent = Character
  62. Top.Size = Vector3.new(1,1,1)
  63. Top.TopSurface = "Smooth"
  64. Top.BottomSurface = "Smooth"
  65. Top.CanCollide = false
  66. Top.Reflectance = .1
  67. Top.FormFactor = "Symmetric"
  68. Top.BrickColor = BrickColor.new("Black")
  69. TopMesh=Instance.new("CylinderMesh")
  70. TopMesh.Scale=Vector3.new(1,1.2,1)
  71. --TopMesh.MeshType = "Head"
  72. TopMesh.Parent=Top
  73. Top:BreakJoints()
  74. teld = Instance.new("Weld")
  75. teld.Parent = Head
  76. teld.Part0 = Head
  77. teld.Part1 = Top
  78. teld.C0 = CFrame.new(0,1,-0)
  79.  
  80. Middle = Instance.new("Part")
  81. Middle.Parent = Character
  82. Middle.Size = Vector3.new(1,1,1)
  83. Middle.TopSurface = "Smooth"
  84. Middle.BottomSurface = "Smooth"
  85. Middle.CanCollide = false
  86. Middle.Reflectance = .1
  87. Middle.FormFactor = "Symmetric"
  88. Middle.BrickColor = BrickColor.new("Lime green")
  89. MiddleMesh=Instance.new("CylinderMesh")
  90. MiddleMesh.Scale=Vector3.new(1.01,.1,1.01)
  91. --MiddleMesh.MeshType = "Head"
  92. MiddleMesh.Parent=Middle
  93. Middle:BreakJoints()
  94. meld = Instance.new("Weld")
  95. meld.Parent = Head
  96. meld.Part0 = Head
  97. meld.Part1 = Middle
  98. meld.C0 = CFrame.new(0,1.3,-0)
  99.  
  100.  
  101. function Page(Num,gm)
  102. if Num == 1 then
  103. for _,v in pairs (gm:GetChildren()) do
  104. if v.Name == "Pg2" then
  105. v:Remove()
  106. else
  107. v.Visible = true
  108. end
  109. end
  110. elseif Num == 2 then
  111. for _,v in pairs (gm:GetChildren()) do
  112. if v.Name ~= "Pg2" then
  113. if v.className == "TextButton" then
  114. v.Visible = false
  115. end
  116. end
  117. end
  118. tb = Instance.new("TextButton")
  119. tb.Parent = gm
  120. tb.Size = UDim2.new(0,70,0,30)
  121. tb.Position = UDim2.new(0,800,0,40)
  122. tb.Text = "Sun Hat"
  123. tb.BackgroundTransparency = .5
  124. tb.TextTransparency = .1
  125. tb.BackgroundColor3 = Color3.new(100,255,255)
  126. tb.BorderColor3 = Color3.new(50,255,255)
  127. tb.Name = "Pg2"
  128. function click()
  129. SunHat()
  130. end
  131. tb.MouseButton1Click:connect(click)
  132. tb = Instance.new("TextButton")
  133. tb.Parent = gm
  134. tb.Size = UDim2.new(0,70,0,30)
  135. tb.Position = UDim2.new(0,800,0,80)
  136. tb.Text = "No Sun Hat"
  137. tb.BackgroundTransparency = .5
  138. tb.TextTransparency = .1
  139. tb.BackgroundColor3 = Color3.new(100,255,255)
  140. tb.BorderColor3 = Color3.new(50,255,255)
  141. tb.Name = "Pg2"
  142. function click()
  143. NoSunHat()
  144. end
  145. tb.MouseButton1Click:connect(click)
  146. tb = Instance.new("TextButton")
  147. tb.Parent = gm
  148. tb.Size = UDim2.new(0,70,0,30)
  149. tb.Position = UDim2.new(0,800,0,120)
  150. tb.Text = "Radio"
  151. tb.BackgroundTransparency = .5
  152. tb.TextTransparency = .1
  153. tb.BackgroundColor3 = Color3.new(100,255,255)
  154. tb.BorderColor3 = Color3.new(50,255,255)
  155. tb.Name = "Pg2"
  156. function click()
  157. Radio()
  158. Radio = true
  159. end
  160. tb.MouseButton1Click:connect(click)
  161. tb = Instance.new("TextButton")
  162. tb.Parent = gm
  163. tb.Size = UDim2.new(0,70,0,30)
  164. tb.Position = UDim2.new(0,800,0,160)
  165. tb.Text = "No Radio"
  166. tb.BackgroundTransparency = .5
  167. tb.TextTransparency = .1
  168. tb.BackgroundColor3 = Color3.new(100,255,255)
  169. tb.BorderColor3 = Color3.new(50,255,255)
  170. tb.Name = "Pg2"
  171. function click()
  172. Radio = false
  173. NoRadio()
  174. end
  175. tb.MouseButton1Click:connect(click)
  176. tb = Instance.new("TextButton")
  177. tb.Parent = gm
  178. tb.Size = UDim2.new(0,70,0,30)
  179. tb.Position = UDim2.new(0,800,0,200)
  180. tb.Text = "Healer"
  181. tb.BackgroundTransparency = .5
  182. tb.TextTransparency = .1
  183. tb.BackgroundColor3 = Color3.new(100,255,255)
  184. tb.BorderColor3 = Color3.new(50,255,255)
  185. tb.Name = "Pg2"
  186. function click()
  187. Something()
  188. Healing = true
  189. end
  190. tb.MouseButton1Click:connect(click)
  191. tb = Instance.new("TextButton")
  192. tb.Parent = gm
  193. tb.Size = UDim2.new(0,70,0,30)
  194. tb.Position = UDim2.new(0,800,0,240)
  195. tb.Text = "No Healer"
  196. tb.BackgroundTransparency = .5
  197. tb.TextTransparency = .1
  198. tb.BackgroundColor3 = Color3.new(100,255,255)
  199. tb.BorderColor3 = Color3.new(50,255,255)
  200. tb.Name = "Pg2"
  201. function click()
  202. NoHealer()
  203. Healing = false
  204. end
  205. tb.MouseButton1Click:connect(click)
  206. tb = Instance.new("TextButton")
  207. tb.Parent = gm
  208. tb.Size = UDim2.new(0,70,0,30)
  209. tb.Position = UDim2.new(0,880,0,40)
  210. tb.Text = "Lemme alone!!"
  211. tb.BackgroundTransparency = .5
  212. tb.TextTransparency = .1
  213. tb.BackgroundColor3 = Color3.new(100,255,255)
  214. tb.BorderColor3 = Color3.new(50,255,255)
  215. tb.Name = "Pg2"
  216. function click()
  217. LeaveMeAlone()
  218. end
  219. tb.MouseButton1Click:connect(click)
  220. tb = Instance.new("TextButton")
  221. tb.Parent = gm
  222. tb.Size = UDim2.new(0,70,0,30)
  223. tb.Position = UDim2.new(0,880,0,80)
  224. tb.Text = "I'm cool now"
  225. tb.BackgroundTransparency = .5
  226. tb.TextTransparency = .1
  227. tb.BackgroundColor3 = Color3.new(100,255,255)
  228. tb.BorderColor3 = Color3.new(50,255,255)
  229. tb.Name = "Pg2"
  230. function click()
  231. ImCoolNow()
  232. end
  233. tb.MouseButton1Click:connect(click)
  234. end
  235. end
  236.  
  237. function Heal()
  238. for i = 1, 40 do
  239. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.1,0,.1)
  240. wait()
  241. end
  242. for i = 1, 60 do
  243. Humanoid.Health = Humanoid.Health + 2
  244. Middle.Transparency = Middle.Transparency + 0.02
  245. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(0,.4,0)
  246. wait()
  247. end
  248. Middle.Transparency = 0
  249. MiddleMesh.Scale = Vector3.new(1.01,.1,1.01)
  250. end
  251.  
  252. function Harm()
  253. Middle.BrickColor = BrickColor.new("Really red")
  254. for i = 1, 40 do
  255. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.1,0,.1)
  256. wait()
  257. end
  258. for i = 1, 60 do
  259. Humanoid.Health = Humanoid.Health - 1
  260. Middle.Transparency = Middle.Transparency + 0.02
  261. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(0,.4,0)
  262. wait()
  263. end
  264. Middle.Transparency = 0
  265. MiddleMesh.Scale = Vector3.new(1.01,.1,1.01)
  266. Middle.BrickColor = BrickColor.new("Lime green")
  267. end
  268.  
  269.  
  270.  
  271.  
  272. function ShieldOn()
  273. Billy = Instance.new("BodyPosition")
  274. Billy.Name = "JoeMama"
  275. Billy.Parent = Head
  276. Billy.position = Head.Position
  277. Billy.maxForce = Vector3.new(0, math.huge, 0)
  278. Middle.Transparency = .5
  279. Character.Humanoid.WalkSpeed = 32
  280. for i = 1, 30 do
  281. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.1,0,.1)
  282. wait()
  283. end
  284. for i = 1, 10 do
  285. wait()
  286. Billy.position = Billy.position + Vector3.new(0,1,0)
  287. end
  288. Sh = true
  289. end
  290.  
  291. function ShieldOff()
  292. Sh = false
  293. for i = 1, 30 do
  294. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.1,0,.1)
  295. wait()
  296. Middle.Transparency = 0
  297. Character.Humanoid.WalkSpeed = 16
  298. end
  299. Billy:remove()
  300. end
  301.  
  302. function Free()
  303. for i = 1, 10 do
  304. Torso.Transparency = Torso.Transparency + .1
  305. Head.Transparency = Head.Transparency + .1
  306. RightArm.Transparency = RightArm.Transparency + .1
  307. LeftArm.Transparency = LeftArm.Transparency + .1
  308. LeftLeg.Transparency = LeftLeg.Transparency + .1
  309. RightLeg.Transparency =RightLeg.Transparency + .1
  310. Top.Transparency = Top.Transparency + .1
  311. Middle.Transparency = Middle.Transparency + .1
  312. Bottom.Transparency = Bottom.Transparency + .1
  313. wait()
  314. end
  315. Torso.CFrame = Torso.CFrame + Vector3.new(0,10,0)
  316. Torso.Anchored = true
  317. for i = 1, 10 do
  318. Torso.Transparency = Torso.Transparency - .1
  319. Head.Transparency = Head.Transparency - .1
  320. RightArm.Transparency = RightArm.Transparency - .1
  321. LeftArm.Transparency = LeftArm.Transparency - .1
  322. LeftLeg.Transparency = LeftLeg.Transparency - .1
  323. RightLeg.Transparency =RightLeg.Transparency - .1
  324. Top.Transparency = Top.Transparency - .1
  325. Middle.Transparency = Middle.Transparency - .1
  326. Bottom.Transparency = Bottom.Transparency - .1
  327. wait()
  328. end
  329. Torso.Anchored = false
  330. end
  331.  
  332. --[[function TeleForward()
  333. for i = 1, 10 do
  334. Torso.Transparency = Torso.Transparency + .1
  335. Head.Transparency = Head.Transparency + .1
  336. RightArm.Transparency = RightArm.Transparency + .1
  337. LeftArm.Transparency = LeftArm.Transparency + .1
  338. LeftLeg.Transparency = LeftLeg.Transparency + .1
  339. RightLeg.Transparency =RightLeg.Transparency + .1
  340. Top.Transparency = Top.Transparency + .1
  341. Middle.Transparency = Middle.Transparency + .1
  342. Bottom.Transparency = Bottom.Transparency + .1
  343. wait()
  344. end
  345. Torso.CFrame.LookVector = Torso.CFrame.LookVector * 10
  346. for i = 1, 10 do
  347. Torso.Transparency = Torso.Transparency - .1
  348. Head.Transparency = Head.Transparency - .1
  349. RightArm.Transparency = RightArm.Transparency - .1
  350. LeftArm.Transparency = LeftArm.Transparency - .1
  351. LeftLeg.Transparency = LeftLeg.Transparency - .1
  352. RightLeg.Transparency =RightLeg.Transparency - .1
  353. Top.Transparency = Top.Transparency - .1
  354. Middle.Transparency = Middle.Transparency - .1
  355. Bottom.Transparency = Bottom.Transparency - .1
  356. wait()
  357. end
  358. end]]--
  359.  
  360. function Rampage()
  361. pp = Instance.new("Part")
  362. pp.Parent = Torso
  363. pp.CFrame = Torso.CFrame
  364. pp.Transparency = 1
  365. pp.BrickColor = BrickColor.new("Bright yellow")
  366. pp.Size = Vector3.new(10,10,10)
  367. pp.FormFactor = "Symmetric"
  368. --pp.CanCollide = false
  369. peld = Instance.new("Weld")
  370. peld.Parent = Torso
  371. peld.Part0 = Middle
  372. peld.Part1 = pp
  373. peld.C0 = CFrame.new(0,-2.7,0)
  374. pm = Instance.new("SpecialMesh")
  375. pm.Parent = pp
  376. pm.MeshType = "Sphere"
  377. for i = 1, 10 do
  378. Torso.Reflectance = Torso.Reflectance + .1
  379. Head.Reflectance = Head.Reflectance + .1
  380. RightArm.Reflectance = RightArm.Reflectance + .1
  381. LeftArm.Reflectance = LeftArm.Reflectance + .1
  382. LeftLeg.Reflectance = LeftLeg.Reflectance + .1
  383. RightLeg.Reflectance =RightLeg.Reflectance + .1
  384. Top.Reflectance = Top.Reflectance + .1
  385. Middle.Reflectance = Middle.Reflectance + .1
  386. Bottom.Reflectance = Bottom.Reflectance + .1
  387. pp.Transparency = pp.Transparency - .05
  388. wait()
  389. end
  390. function OnTouched(food)
  391. if food.Name ~= "Base" then
  392. food:remove()
  393. end
  394. end
  395. pp.Touched:connect(OnTouched)
  396. Humanoid.WalkSpeed = 80
  397. wait(15)
  398. for i = 1, 10 do
  399. Torso.Reflectance = Torso.Reflectance - .1
  400. Head.Reflectance = Head.Reflectance - .1
  401. RightArm.Reflectance = RightArm.Reflectance - .1
  402. LeftArm.Reflectance = LeftArm.Reflectance - .1
  403. LeftLeg.Reflectance = LeftLeg.Reflectance - .1
  404. RightLeg.Reflectance =RightLeg.Reflectance - .1
  405. Top.Reflectance = Top.Reflectance - .1
  406. Middle.Reflectance = Middle.Reflectance - .1
  407. Bottom.Reflectance = Bottom.Reflectance - .1
  408. pp.Transparency = pp.Transparency + .1
  409. wait()
  410. end
  411. pp:remove()
  412. Humanoid.WalkSpeed = 16
  413. end
  414.  
  415. function Something()
  416. for i = 1, 20 do
  417. Middle.Transparency = Middle.Transparency + .05
  418. wait()
  419. end
  420. --MiddleMesh.MeshType = "Sphere"
  421. for i = 1, 20 do
  422. TopMesh.Scale = TopMesh.Scale - Vector3.new(.04,0,.04)
  423. wait()
  424. end
  425. for i = 1, 10 do
  426. teld.C0 = teld.C0 - Vector3.new(.045,0,0)
  427. wait()
  428. end
  429. for i = 1, 20 do
  430. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(.065,0,.065)
  431. wait()
  432. end
  433. for i = 1, 10 do
  434. beld.C0 = beld.C0 + Vector3.new(0,.045,0)
  435. wait()
  436. end
  437. for i = 1, 10 do
  438. beld.C0 = beld.C0 + Vector3.new(.045,0,0)
  439. wait()
  440. end
  441. for i = 1, 20 do
  442. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(0,.06,0)
  443. wait()
  444. end
  445. for i = 1, 20 do
  446. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.01,0,.01)
  447. wait()
  448. end
  449. for i = 1, 10 do
  450. meld.C0 = meld.C0 + Vector3.new(0,.035,0)
  451. wait()
  452. end
  453. end
  454.  
  455. function NoHealer()
  456. meld.C0 = CFrame.new(0,1.3,-0)
  457. MiddleMesh.Scale=Vector3.new(1.01,.1,1.01)
  458. for i = 1, 20 do
  459. Middle.Transparency = Middle.Transparency - .05
  460. wait()
  461. end
  462. --MiddleMesh.MeshType = "Sphere"
  463. for i = 1, 20 do
  464. TopMesh.Scale = TopMesh.Scale + Vector3.new(.04,0,.04)
  465. wait()
  466. end
  467. for i = 1, 10 do
  468. teld.C0 = teld.C0 + Vector3.new(.045,0,0)
  469. wait()
  470. end
  471. for i = 1, 20 do
  472. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(.065,0,.065)
  473. wait()
  474. end
  475. for i = 1, 10 do
  476. beld.C0 = beld.C0 - Vector3.new(0,.045,0)
  477. wait()
  478. end
  479. for i = 1, 10 do
  480. beld.C0 = beld.C0 - Vector3.new(.045,0,0)
  481. wait()
  482. end
  483. for i = 1, 20 do
  484. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(0,.06,0)
  485. wait()
  486. end
  487. end
  488.  
  489. function LeaveMeAlone()
  490. for i = 1, 20 do
  491. beld.C0 = beld.C0 - Vector3.new(0,.125,0)
  492. wait()
  493. end
  494. for i = 1, 20 do
  495. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(.15,0,.15)
  496. wait()
  497. end
  498. for i = 1, 20 do
  499. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(0,.275,0)
  500. wait()
  501. end
  502. pp = Instance.new("Part")
  503. pp.Parent = Torso
  504. pp.CFrame = Torso.CFrame
  505. pp.Transparency = 1
  506. pp.BrickColor = BrickColor.new("Bright yellow")
  507. pp.Size = Vector3.new(4.5,5,4.5)
  508. pp.FormFactor = "Symmetric"
  509. --pp.CanCollide = false
  510. peld = Instance.new("Weld")
  511. peld.Parent = Torso
  512. peld.Part0 = Head
  513. peld.Part1 = pp
  514. peld.C0 = CFrame.new(0,-2.5,0)
  515. Humanoid.WalkSpeed = 0
  516. end
  517.  
  518. function ImCoolNow()
  519. for i = 1, 20 do
  520. beld.C0 = beld.C0 + Vector3.new(0,.125,0)
  521. wait()
  522. end
  523. for i = 1, 20 do
  524. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(.15,0,.15)
  525. wait()
  526. end
  527. for i = 1, 20 do
  528. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(0,.275,0)
  529. wait()
  530. end
  531. pp:remove()
  532. Humanoid.WalkSpeed = 16
  533. end
  534.  
  535. function Radio()
  536. for i = 1, 20 do
  537. beld.C0 = beld.C0 - Vector3.new(0,.05,0)
  538. wait()
  539. end
  540. for i = 1, 20 do
  541. beld.C0 = beld.C0 + Vector3.new(0,0,.08)
  542. wait()
  543. end
  544. for i = 1, 20 do
  545. beld.C0 = beld.C0 - Vector3.new(0,.05,0)
  546. wait()
  547. end
  548. for i = 1, 20 do
  549. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(.05,0,.05)
  550. wait()
  551. end
  552. for i = 1, 20 do
  553. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(0,.175,0)
  554. wait()
  555. end
  556. for i = 1, 20 do
  557. meld.C0 = meld.C0 + Vector3.new(0,0,.08)
  558. wait()
  559. end
  560. for i = 1, 20 do
  561. meld.C0 = meld.C0 - Vector3.new(0,.05,0)
  562. wait()
  563. end
  564. for i = 1, 20 do
  565. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.05,0,.05)
  566. wait()
  567. end
  568. for i = 1, 20 do
  569. teld.C0 = teld.C0 + Vector3.new(0,0,.08)
  570. wait()
  571. end
  572. for i = 1, 20 do
  573. TopMesh.Scale = TopMesh.Scale - Vector3.new(.043,0,.043)
  574. wait()
  575. end
  576. for i = 1, 20 do
  577. TopMesh.Scale = TopMesh.Scale + Vector3.new(0,.12,0)
  578. wait()
  579. end
  580. for i = 1, 20 do
  581. teld.C0 = teld.C0 + Vector3.new(.03,0,0)
  582. wait()
  583. end
  584. for i = 1, 20 do
  585. teld.C0 = teld.C0 + Vector3.new(0,.05,0)
  586. wait()
  587. end
  588. end
  589.  
  590. function NoRadio()
  591. for i = 1, 20 do
  592. beld.C0 = beld.C0 + Vector3.new(0,.05,0)
  593. wait()
  594. end
  595. for i = 1, 20 do
  596. beld.C0 = beld.C0 - Vector3.new(0,0,.08)
  597. wait()
  598. end
  599. for i = 1, 20 do
  600. beld.C0 = beld.C0 + Vector3.new(0,.05,0)
  601. wait()
  602. end
  603. for i = 1, 20 do
  604. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(.05,0,.05)
  605. wait()
  606. end
  607. for i = 1, 20 do
  608. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(0,.175,0)
  609. wait()
  610. end
  611. for i = 1, 20 do
  612. meld.C0 = meld.C0 - Vector3.new(0,0,.08)
  613. wait()
  614. end
  615. for i = 1, 20 do
  616. meld.C0 = meld.C0 + Vector3.new(0,.05,0)
  617. wait()
  618. end
  619. for i = 1, 20 do
  620. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.05,0,.05)
  621. wait()
  622. end
  623. for i = 1, 20 do
  624. teld.C0 = teld.C0 - Vector3.new(0,0,.08)
  625. wait()
  626. end
  627. for i = 1, 20 do
  628. TopMesh.Scale = TopMesh.Scale + Vector3.new(.043,0,.043)
  629. wait()
  630. end
  631. for i = 1, 20 do
  632. TopMesh.Scale = TopMesh.Scale - Vector3.new(0,.12,0)
  633. wait()
  634. end
  635. for i = 1, 20 do
  636. teld.C0 = teld.C0 - Vector3.new(.03,0,0)
  637. wait()
  638. end
  639. for i = 1, 20 do
  640. teld.C0 = teld.C0 - Vector3.new(0,.05,0)
  641. wait()
  642. end
  643. end
  644.  
  645.  
  646. function SunHat()
  647. for i = 1, 12.5 do
  648. meld.C0 = meld.C0 - Vector3.new(0,.05,0)
  649. wait()
  650. end
  651. for i = 1, 2 do
  652. beld.C0 = beld.C0 + Vector3.new(0,.05,0)
  653. wait()
  654. end
  655. for i = 1, 15 do
  656. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(.25,0,.25)
  657. wait()
  658. end
  659. for i = 1, 10 do
  660. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.25,0,.25)
  661. wait()
  662. end
  663. for i = 1, 22 do
  664. TopMesh.Scale = TopMesh.Scale - Vector3.new(0,0.05,0)
  665. wait()
  666. end
  667. for i = 1, 5 do
  668. teld.C0 = teld.C0 - Vector3.new(0,.04,0)
  669. wait()
  670. end
  671. end
  672.  
  673.  
  674. function NoSunHat()
  675. for i = 1, 12.5 do
  676. meld.C0 = meld.C0 + Vector3.new(0,.05,0)
  677. wait()
  678. end
  679. for i = 1, 2 do
  680. beld.C0 = beld.C0 - Vector3.new(0,.05,0)
  681. wait()
  682. end
  683. for i = 1, 15 do
  684. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(.25,0,.25)
  685. wait()
  686. end
  687. for i = 1, 10 do
  688. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.25,0,.25)
  689. wait()
  690. end
  691. for i = 1, 22 do
  692. TopMesh.Scale = TopMesh.Scale + Vector3.new(0,0.05,0)
  693. wait()
  694. end
  695. for i = 1, 5 do
  696. teld.C0 = teld.C0 + Vector3.new(0,.04,0)
  697. wait()
  698. end
  699. end
  700.  
  701. function CoolHat()
  702. for i = 1, 15 do
  703. meld.C0 = meld.C0 - Vector3.new(0,.049,0)
  704. wait()
  705. end
  706. for i = 1, 15 do
  707. TopMesh.Scale = TopMesh.Scale - Vector3.new(0,0.05,0)
  708. wait()
  709. end
  710. for i = 1, 15 do
  711. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(.05,0,.05)
  712. wait()
  713. end
  714. for i = 1, 15 do
  715. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.025,0,.025)
  716. wait()
  717. end
  718. for i = 1, 10 do
  719. teld.C0 = teld.C0 - Vector3.new(0,.04,0)
  720. wait()
  721. end
  722. for i = 1, 5 do
  723. --Bottom.CFrame = Bottom.CFrame + CFrame.Angles(45, 45, 45)
  724. --CFrame.new()*CFrame,Angles(0,0,0)
  725. end
  726. end
  727.  
  728. function NoCoolHat()
  729. for i = 1, 15 do
  730. meld.C0 = meld.C0 + Vector3.new(0,.049,0)
  731. wait()
  732. end
  733. for i = 1, 15 do
  734. TopMesh.Scale = TopMesh.Scale + Vector3.new(0,0.05,0)
  735. wait()
  736. end
  737. for i = 1, 15 do
  738. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(.05,0,.05)
  739. wait()
  740. end
  741. for i = 1, 15 do
  742. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.025,0,.025)
  743. wait()
  744. end
  745. for i = 1, 10 do
  746. teld.C0 = teld.C0 + Vector3.new(0,.04,0)
  747. wait()
  748. end
  749. for i = 1, 5 do
  750. --Bottom.CFrame = Bottom.CFrame - CFrame.Angles(45, 45, 45)
  751. --CFrame.new()*CFrame,Angles(0,0,0)
  752. end
  753. end
  754.  
  755. function SweatBand()
  756. for i = 1, 20 do
  757. meld.C0 = meld.C0 - Vector3.new(0,.05,0)
  758. wait()
  759. end
  760. for i = 1, 10 do
  761. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.0225,0,.0225)
  762. wait()
  763. end
  764. for i = 1, 14 do
  765. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(.02,0,.02)
  766. wait()
  767. end
  768. for i = 1, 10 do
  769. beld.C0 = beld.C0 - Vector3.new(0,.02,0)
  770. wait()
  771. end
  772. for i = 1, 5 do
  773. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(0,.03,0)
  774. wait()
  775. end
  776. for i = 1, 8 do
  777. TopMesh.Scale = TopMesh.Scale - Vector3.new(.1,0,.1)
  778. wait()
  779. end
  780. for i = 1, 8 do
  781. teld.C0 = teld.C0 + Vector3.new(0,0,.072)
  782. wait()
  783. end
  784. for i = 1, 12.5 do
  785. teld.C0 = teld.C0 - Vector3.new(0,.1,0)
  786. wait()
  787. end
  788. end
  789.  
  790. function NoSweatBand()
  791. for i = 1, 20 do
  792. meld.C0 = meld.C0 + Vector3.new(0,.05,0)
  793. wait()
  794. end
  795. for i = 1, 10 do
  796. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.0225,0,.0225)
  797. wait()
  798. end
  799. for i = 1, 14 do
  800. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(.02,0,.02)
  801. wait()
  802. end
  803. for i = 1, 10 do
  804. beld.C0 = beld.C0 + Vector3.new(0,.02,0)
  805. wait()
  806. end
  807. for i = 1, 5 do
  808. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(0,.03,0)
  809. wait()
  810. end
  811. for i = 1, 8 do
  812. TopMesh.Scale = TopMesh.Scale + Vector3.new(.1,0,.1)
  813. wait()
  814. end
  815. for i = 1, 8 do
  816. teld.C0 = teld.C0 - Vector3.new(0,0,.072)
  817. wait()
  818. end
  819. for i = 1, 12.5 do
  820. teld.C0 = teld.C0 + Vector3.new(0,.1,0)
  821. wait()
  822. end
  823. end
  824.  
  825. function Umbrella()
  826. for i = 1, 30 do
  827. meld.C0 = meld.C0 + Vector3.new(0,.05,0)
  828. wait()
  829. end
  830. for i = 1, 44.5 do
  831. beld.C0 = beld.C0 + Vector3.new(0,.05,0)
  832. wait()
  833. end
  834. for i = 1, 6.5 do
  835. TopMesh.Scale = TopMesh.Scale - Vector3.new(0.1,0,0.1)
  836. wait()
  837. end
  838. for i = 1, 20 do
  839. TopMesh.Scale = TopMesh.Scale - Vector3.new(0,.25,0)
  840. wait()
  841. end
  842. for i = 1, 15 do
  843. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(.25,0,.25)
  844. wait()
  845. end
  846. for i = 1, 10 do
  847. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.25,0,.25)
  848. wait()
  849. end
  850. end
  851.  
  852. function Normal()
  853. for i = 1, 30 do
  854. meld.C0 = meld.C0 - Vector3.new(0,.05,0)
  855. wait()
  856. end
  857. for i = 1, 44.5 do
  858. beld.C0 = beld.C0 - Vector3.new(0,.05,0)
  859. wait()
  860. end
  861. for i = 1, 6.5 do
  862. TopMesh.Scale = TopMesh.Scale + Vector3.new(0.1,0,0.1)
  863. wait()
  864. end
  865. for i = 1, 20 do
  866. TopMesh.Scale = TopMesh.Scale + Vector3.new(0,.25,0)
  867. wait()
  868. end
  869. for i = 1, 15 do
  870. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(.25,0,.25)
  871. wait()
  872. end
  873. for i = 1, 10 do
  874. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.25,0,.25)
  875. wait()
  876. end
  877. end
  878.  
  879. function Helmet()
  880. for i = 1, 30 do
  881. beld.C0 = beld.C0 - Vector3.new(0,.015,0)
  882. wait()
  883. end
  884. for i = 1, 30 do
  885. BottomMesh.Scale = BottomMesh.Scale + Vector3.new(0,.037,0)
  886. wait()
  887. end
  888. for i = 1, 30 do
  889. meld.C0 = meld.C0 - Vector3.new(0,.035,0)
  890. wait()
  891. end
  892. for i = 1, 30 do
  893. meld.C0 = meld.C0 - Vector3.new(0,0,.0095)
  894. wait()
  895. end
  896. for i = 1, 30 do
  897. TopMesh.Scale = TopMesh.Scale - Vector3.new(.03,.0,.03)
  898. wait()
  899. end
  900. for i = 1, 15 do
  901. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.01,.0,.01)
  902. wait()
  903. end
  904. for i = 1, 30 do
  905. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.01,.0,.01)
  906. wait()
  907. end
  908. for i = 1, 8 do
  909. meld.C0 = meld.C0 + Vector3.new(0,0,.0095)
  910. wait()
  911. end
  912. for i = 1, 8 do
  913. teld.C0 = teld.C0 + Vector3.new(.05,0,0)
  914. wait()
  915. end
  916. end
  917.  
  918. function NoHelmet()
  919. for i = 1, 30 do
  920. beld.C0 = beld.C0 + Vector3.new(0,.015,0)
  921. wait()
  922. end
  923. for i = 1, 30 do
  924. BottomMesh.Scale = BottomMesh.Scale - Vector3.new(0,.037,0)
  925. wait()
  926. end
  927. for i = 1, 30 do
  928. meld.C0 = meld.C0 + Vector3.new(0,.035,0)
  929. wait()
  930. end
  931. for i = 1, 30 do
  932. meld.C0 = meld.C0 + Vector3.new(0,0,.0095)
  933. wait()
  934. end
  935. for i = 1, 30 do
  936. TopMesh.Scale = TopMesh.Scale + Vector3.new(.03,.0,.03)
  937. wait()
  938. end
  939. for i = 1, 15 do
  940. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.01,.0,.01)
  941. wait()
  942. end
  943. for i = 1, 30 do
  944. MiddleMesh.Scale = MiddleMesh.Scale - Vector3.new(.01,.0,.01)
  945. wait()
  946. end
  947. for i = 1, 8 do
  948. meld.C0 = meld.C0 - Vector3.new(0,0,.0095)
  949. wait()
  950. end
  951. for i = 1, 8 do
  952. teld.C0 = teld.C0 - Vector3.new(.05,0,0)
  953. wait()
  954. end
  955. end
  956.  
  957.  
  958.  
  959. function Spin()
  960. for i = 1, 30 do
  961. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(1,0,1)
  962. Middle.Transparency = Middle.Transparency + .015
  963. wait()
  964. end
  965. for i = 1, 90 do
  966. meld.C0 = meld.C0 - Vector3.new(0,.11,0)
  967. wait()
  968. end
  969. meld.C0 = CFrame.new(0,1.3,-0)
  970. MiddleMesh.Scale = Vector3.new(1.01,.1,1.01)
  971. Middle.Transparency = 0
  972. end
  973.  
  974. function Suicide()
  975. ef2 = Instance.new("BodyVelocity")
  976. ef2.Parent = Torso
  977. ef2.maxForce = Vector3.new(0,math.huge,0)
  978. ef2.velocity = Vector3.new(0, 50, 0)
  979. Character.Humanoid.PlatformStand = true
  980. wait(1)
  981. --Sound.SoundId = "http://www.roblox.com/asset/?id=2101148"
  982. --Sound.Pitch = 1
  983. for i = 1, 3 do
  984. e = Instance.new("Explosion")
  985. e.Parent = Workspace
  986. e.Position = Torso.Position
  987. e.BlastRadius = 30
  988. e.BlastPressure = 10000
  989. --Sound:play()
  990. wait(.2)
  991. e = Instance.new("Explosion")
  992. e.Parent = Workspace
  993. e.Position = Head.Position
  994. e.BlastRadius = 30
  995. e.BlastPressure = 1000
  996. --Sound:play()
  997. wait(.2)
  998. e = Instance.new("Explosion")
  999. e.Parent = Workspace
  1000. e.Position = RightArm.Position
  1001. e.BlastRadius = 30
  1002. e.BlastPressure = 1000
  1003. --Sound:play()
  1004. wait(.2)
  1005. e = Instance.new("Explosion")
  1006. e.Parent = Workspace
  1007. e.Position = LeftArm.Position
  1008. e.BlastRadius = 30
  1009. e.BlastPressure = 1000
  1010. --Sound:play()
  1011. wait(.2)
  1012. e = Instance.new("Explosion")
  1013. e.Parent = Workspace
  1014. e.Position = LeftLeg.Position
  1015. e.BlastRadius = 30
  1016. e.BlastPressure = 1000
  1017. --Sound:play()
  1018. wait(.2)
  1019. e = Instance.new("Explosion")
  1020. e.Parent = Workspace
  1021. e.Position = RightLeg.Position
  1022. e.BlastRadius = 1000
  1023. e.BlastPressure = 1000
  1024. --Sound:play()
  1025. wait(.2)
  1026. end
  1027. end
  1028.  
  1029. function Change()
  1030. for i = 1, 100 do
  1031. meld.C0 = meld.C0 + Vector3.new(0,.5,0)
  1032. wait()
  1033. end
  1034. for i = 1, 200 do
  1035. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(1,0,1)
  1036. wait()
  1037. end
  1038. for i = 1, 50 do
  1039. meld.C0 = meld.C0 - Vector3.new(0,2,0)
  1040. Stuff = Workspace:GetChildren()
  1041. for i = 1 , #Stuff do
  1042. Torsoo = Stuff[i]:findFirstChild("Torso")
  1043. if Torsoo ~= nil then
  1044. if (Torsoo.Position-Torsoo.Position).magnitude <= (10) then
  1045. if Torsoo.Parent.Name ~= Names then
  1046. Humanoid = Torsoo.Parent:findFirstChild("Humanoid")
  1047. if Humanoid ~= nil then
  1048. Humanoid.MaxHealth = 100
  1049. Humanoid:TakeDamage(1)
  1050. Humanoid.Sit = true
  1051. Torsoo.CFrame =Torsoo.CFrame * CFrame.Angles(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  1052. end
  1053. end
  1054. end
  1055. end
  1056. end
  1057. wait()
  1058. end
  1059. meld.C0 = CFrame.new(0,1.3,-0)
  1060. MiddleMesh.Scale = Vector3.new(1.01,.1,1.01)
  1061. Middle.Transparency = 0
  1062. end
  1063.  
  1064. function Clean()
  1065. stuff = game.Workspace:GetChildren()
  1066. for i = 1 , #stuff do
  1067. if stuff[i].className ~= "Script" then
  1068. if game.Players:GetPlayerFromCharacter(stuff[i]) == nil then
  1069. stuff[i]:Remove()
  1070. end
  1071. end
  1072. end
  1073. p = Instance.new("Part")
  1074. p.Parent = game.Workspace
  1075. p.Name = "Base"
  1076. p.Anchored = true
  1077. p.BottomSurface = "Smooth"
  1078. p.BrickColor = BrickColor.new (28)
  1079. p.Size = Vector3.new(512, 1, 512)
  1080. p.CFrame = CFrame.new(Vector3.new(0, 0, 0))
  1081.  
  1082. game.Lighting.ColorShift_Bottom = Color3.new(100, 100, 100)
  1083. game.Lighting.ColorShift_Top = Color3.new(0, 0, 0)
  1084. game.Lighting.Ambient = Color3.new(2, 2, 2)
  1085. game.Lighting.Brightness = 1
  1086. game.Lighting.TimeOfDay = "12:00:00"
  1087. end
  1088.  
  1089. function ResetHat()
  1090. for i = 1, 20 do
  1091. Top.Transparency = Top.Transparency + .05
  1092. Bottom.Transparency = Bottom.Transparency + .05
  1093. Middle.Transparency = Middle.Transparency + .05
  1094. wait()
  1095. end
  1096. meld.C0 = CFrame.new(0,1.3,-0)
  1097. MiddleMesh.Scale=Vector3.new(1.01,.1,1.01)
  1098. beld.C0 = CFrame.new(0,.5,-0)
  1099. BottomMesh.Scale=Vector3.new(1.5,.1,1.5)
  1100. teld.C0 = CFrame.new(0,1,-0)
  1101. TopMesh.Scale=Vector3.new(1,1.2,1)
  1102. wait(1)
  1103. for i = 1, 20 do
  1104. Top.Transparency = Top.Transparency - .05
  1105. Bottom.Transparency = Bottom.Transparency - .05
  1106. Middle.Transparency = Middle.Transparency - .05
  1107. wait()
  1108. end
  1109. end
  1110.  
  1111.  
  1112. gm = Instance.new("GuiMain")
  1113. gm.Parent = Player.PlayerGui
  1114. gm.Name = "GUI-Main"
  1115. Frame = Instance.new("Frame",gm)
  1116. Frame.Size = UDim2.new(0,310,0,300)
  1117. Frame.Position = UDim2.new(0,780,0,20)
  1118. Frame.BackgroundTransparency = .5
  1119. Frame.BackgroundColor3 = Color3.new(50,50,50)
  1120. Frame.BorderColor3 = Color3.new(0,0,0)
  1121. Prev = Instance.new("TextButton",Frame)
  1122. Prev.Position = UDim2.new(0,0,0,285)
  1123. Prev.Size = UDim2.new(0,70,0,15)
  1124. Prev.Text = "Page 1"
  1125. Prev.BackgroundTransparency = .5
  1126. Prev.TextTransparency = .1
  1127. Prev.BackgroundColor3 = Color3.new(100,255,255)
  1128. Prev.BorderColor3 = Color3.new(50,255,255)
  1129. function onClick()
  1130. Page(1,gm)
  1131. end
  1132. Prev.MouseButton1Click:connect(onClick)
  1133. Next = Instance.new("TextButton",Frame)
  1134. Next.Position = UDim2.new(0,240,0,285)
  1135. Next.Size = UDim2.new(0,70,0,15)
  1136. Next.Text = "Page 2"
  1137. Next.BackgroundTransparency = .5
  1138. Next.TextTransparency = .1
  1139. Next.BackgroundColor3 = Color3.new(100,255,255)
  1140. Next.BorderColor3 = Color3.new(50,255,255)
  1141. function onClick()
  1142. Page(2,gm)
  1143. end
  1144. Next.MouseButton1Click:connect(onClick)
  1145. tb = Instance.new("TextButton")
  1146. tb.Parent = gm
  1147. tb.Size = UDim2.new(0,70,0,30)
  1148. tb.Position = UDim2.new(0,900,0,240)
  1149. tb.Text = "Helicopter"
  1150. tb.BackgroundTransparency = .5
  1151. tb.TextTransparency = .1
  1152. tb.BackgroundColor3 = Color3.new(100,255,255)
  1153. tb.BorderColor3 = Color3.new(50,255,255)
  1154. function click()
  1155. ShieldOn()
  1156. --[[if Sh ~= true then
  1157. ShieldOff()
  1158. end]]
  1159. wait(15)
  1160. ShieldOff()
  1161. end
  1162. tb.MouseButton1Click:connect(click)
  1163. tb = Instance.new("TextButton")
  1164. tb.Parent = gm
  1165. tb.Size = UDim2.new(0,70,0,30)
  1166. tb.Position = UDim2.new(0,1000,0,240)
  1167. tb.Text = "Heal"
  1168. tb.BackgroundTransparency = .5
  1169. tb.TextTransparency = .1
  1170. tb.BackgroundColor3 = Color3.new(100,255,255)
  1171. tb.BorderColor3 = Color3.new(50,255,255)
  1172. function click()
  1173. Heal()
  1174. end
  1175. tb.MouseButton1Click:connect(click)
  1176. tb = Instance.new("TextButton")
  1177. tb.Parent = gm
  1178. tb.Size = UDim2.new(0,70,0,30)
  1179. tb.Position = UDim2.new(0,1000,0,200)
  1180. tb.Text = "Harm"
  1181. tb.BackgroundTransparency = .5
  1182. tb.TextTransparency = .1
  1183. tb.BackgroundColor3 = Color3.new(100,255,255)
  1184. tb.BorderColor3 = Color3.new(50,255,255)
  1185. function click()
  1186. Harm()
  1187. end
  1188. tb.MouseButton1Click:connect(click)
  1189. tb = Instance.new("TextButton")
  1190. tb.Parent = gm
  1191. tb.Size = UDim2.new(0,70,0,30)
  1192. tb.Position = UDim2.new(0,800,0,240)
  1193. tb.Text = "TeleUp"
  1194. tb.BackgroundTransparency = .5
  1195. tb.TextTransparency = .1
  1196. tb.BackgroundColor3 = Color3.new(100,255,255)
  1197. tb.BorderColor3 = Color3.new(50,255,255)
  1198. function click()
  1199. Free()
  1200. end
  1201. tb.MouseButton1Click:connect(click)
  1202. tb = Instance.new("TextButton")
  1203. tb.Parent = gm
  1204. tb.Size = UDim2.new(0,70,0,30)
  1205. tb.Position = UDim2.new(0,800,0,200)
  1206. tb.Text = "Spin"
  1207. tb.BackgroundTransparency = .5
  1208. tb.TextTransparency = .1
  1209. tb.BackgroundColor3 = Color3.new(100,255,255)
  1210. tb.BorderColor3 = Color3.new(50,255,255)
  1211. function click()
  1212. Spin()
  1213. end
  1214. tb.MouseButton1Click:connect(click)
  1215. tb = Instance.new("TextButton")
  1216. tb.Parent = gm
  1217. tb.Size = UDim2.new(0,70,0,30)
  1218. tb.Position = UDim2.new(0,800,0,160)
  1219. tb.Text = "KillSelf"
  1220. tb.BackgroundTransparency = .5
  1221. tb.TextTransparency = .1
  1222. tb.BackgroundColor3 = Color3.new(100,255,255)
  1223. tb.BorderColor3 = Color3.new(50,255,255)
  1224. function click()
  1225. Suicide()
  1226. end
  1227. tb.MouseButton1Click:connect(click)
  1228. tb = Instance.new("TextButton")
  1229. tb.Parent = gm
  1230. tb.Size = UDim2.new(0,70,0,30)
  1231. tb.Position = UDim2.new(0,800,0,120)
  1232. tb.Text = "Darkness"
  1233. tb.BackgroundTransparency = .5
  1234. tb.TextTransparency = .1
  1235. tb.BackgroundColor3 = Color3.new(100,255,255)
  1236. tb.BorderColor3 = Color3.new(50,255,255)
  1237. function click()
  1238. Change()
  1239. end
  1240. tb.MouseButton1Click:connect(click)
  1241. tb = Instance.new("TextButton")
  1242. tb.Parent = gm
  1243. tb.Size = UDim2.new(0,70,0,30)
  1244. tb.Position = UDim2.new(0,800,0,80)
  1245. tb.Text = "Clean"
  1246. tb.BackgroundTransparency = .5
  1247. tb.TextTransparency = .1
  1248. tb.BackgroundColor3 = Color3.new(100,255,255)
  1249. tb.BorderColor3 = Color3.new(50,255,255)
  1250. function click()
  1251. Clean()
  1252. end
  1253. tb.MouseButton1Click:connect(click)
  1254. tb = Instance.new("TextButton")
  1255. tb.Parent = gm
  1256. tb.Size = UDim2.new(0,70,0,30)
  1257. tb.Position = UDim2.new(0,800,0,40)
  1258. tb.Text = "Rampage"
  1259. tb.BackgroundTransparency = .5
  1260. tb.TextTransparency = .1
  1261. tb.BackgroundColor3 = Color3.new(100,255,255)
  1262. tb.BorderColor3 = Color3.new(50,255,255)
  1263. function click()
  1264. Rampage()
  1265. end
  1266. tb.MouseButton1Click:connect(click)
  1267. tb = Instance.new("TextButton")
  1268. tb.Parent = gm
  1269. tb.Size = UDim2.new(0,70,0,30)
  1270. tb.Position = UDim2.new(0,1000,0,160)
  1271. tb.Text = "Umbrella"
  1272. tb.BackgroundTransparency = .5
  1273. tb.TextTransparency = .1
  1274. tb.BackgroundColor3 = Color3.new(100,255,255)
  1275. tb.BorderColor3 = Color3.new(50,255,255)
  1276. function click()
  1277. Umbrella()
  1278. end
  1279. tb.MouseButton1Click:connect(click)
  1280. tb = Instance.new("TextButton")
  1281. tb.Parent = gm
  1282. tb.Size = UDim2.new(0,70,0,30)
  1283. tb.Position = UDim2.new(0,1000,0,120)
  1284. tb.Text = "No-Umbrella"
  1285. tb.BackgroundTransparency = .5
  1286. tb.TextTransparency = .1
  1287. tb.BackgroundColor3 = Color3.new(100,255,255)
  1288. tb.BorderColor3 = Color3.new(50,255,255)
  1289. function click()
  1290. Normal()
  1291. end
  1292. tb.MouseButton1Click:connect(click)
  1293. tb = Instance.new("TextButton")
  1294. tb.Parent = gm
  1295. tb.Size = UDim2.new(0,70,0,30)
  1296. tb.Position = UDim2.new(0,1000,0,80)
  1297. tb.Text = "Helmet"
  1298. tb.BackgroundTransparency = .5
  1299. tb.TextTransparency = .1
  1300. tb.BackgroundColor3 = Color3.new(100,255,255)
  1301. tb.BorderColor3 = Color3.new(50,255,255)
  1302. function click()
  1303. Helmet()
  1304. end
  1305. tb.MouseButton1Click:connect(click)
  1306. tb = Instance.new("TextButton")
  1307. tb.Parent = gm
  1308. tb.Size = UDim2.new(0,70,0,30)
  1309. tb.Position = UDim2.new(0,1000,0,40)
  1310. tb.Text = "No-Helmet"
  1311. tb.BackgroundTransparency = .5
  1312. tb.TextTransparency = .1
  1313. tb.BackgroundColor3 = Color3.new(100,255,255)
  1314. tb.BorderColor3 = Color3.new(50,255,255)
  1315. function click()
  1316. NoHelmet()
  1317. end
  1318. tb.MouseButton1Click:connect(click)
  1319. tb = Instance.new("TextButton")
  1320. tb.Parent = gm
  1321. tb.Size = UDim2.new(0,70,0,30)
  1322. tb.Position = UDim2.new(0,900,0,40)
  1323. tb.Text = "Cool-Hat"
  1324. tb.BackgroundTransparency = .5
  1325. tb.TextTransparency = .1
  1326. tb.BackgroundColor3 = Color3.new(100,255,255)
  1327. tb.BorderColor3 = Color3.new(50,255,255)
  1328. function click()
  1329. CoolHat()
  1330. end
  1331. tb.MouseButton1Click:connect(click)
  1332. tb = Instance.new("TextButton")
  1333. tb.Parent = gm
  1334. tb.Size = UDim2.new(0,70,0,30)
  1335. tb.Position = UDim2.new(0,900,0,80)
  1336. tb.Text = "No-Cool-Hat"
  1337. tb.BackgroundTransparency = .5
  1338. tb.TextTransparency = .1
  1339. tb.BackgroundColor3 = Color3.new(100,255,255)
  1340. tb.BorderColor3 = Color3.new(50,255,255)
  1341. function click()
  1342. NoCoolHat()
  1343. end
  1344. tb.MouseButton1Click:connect(click)
  1345. tb = Instance.new("TextButton")
  1346. tb.Parent = gm
  1347. tb.Size = UDim2.new(0,70,0,30)
  1348. tb.Position = UDim2.new(0,900,0,120)
  1349. tb.Text = "Sweatband"
  1350. tb.BackgroundTransparency = .5
  1351. tb.TextTransparency = .1
  1352. tb.BackgroundColor3 = Color3.new(100,255,255)
  1353. tb.BorderColor3 = Color3.new(50,255,255)
  1354. function click()
  1355. SweatBand()
  1356. end
  1357. tb.MouseButton1Click:connect(click)
  1358. tb = Instance.new("TextButton")
  1359. tb.Parent = gm
  1360. tb.Size = UDim2.new(0,70,0,30)
  1361. tb.Position = UDim2.new(0,900,0,160)
  1362. tb.Text = "No-Sweatband"
  1363. tb.BackgroundTransparency = .5
  1364. tb.TextTransparency = .1
  1365. tb.BackgroundColor3 = Color3.new(100,255,255)
  1366. tb.BorderColor3 = Color3.new(50,255,255)
  1367. function click()
  1368. NoSweatBand()
  1369. end
  1370. tb.MouseButton1Click:connect(click)
  1371. tb = Instance.new("TextButton")
  1372. tb.Parent = gm
  1373. tb.Size = UDim2.new(0,70,0,30)
  1374. tb.Position = UDim2.new(0,900,0,200)
  1375. tb.Text = "Reset Hat"
  1376. tb.BackgroundTransparency = .5
  1377. tb.TextTransparency = .1
  1378. tb.BackgroundColor3 = Color3.new(100,255,255)
  1379. tb.BorderColor3 = Color3.new(50,255,255)
  1380. function click()
  1381. ResetHat()
  1382. end
  1383. tb.MouseButton1Click:connect(click)
  1384.  
  1385.  
  1386. Vip = Player
  1387. function onChatted(msg)
  1388. if Radio == true then
  1389. if msg == "FOR ALLAH!" then
  1390. Humanoid.WalkSpeed = 24
  1391. for i = 1, 5 do
  1392. Middle.BrickColor = BrickColor.new("Really red")
  1393. wait(1)
  1394. Middle.BrickColor = BrickColor.new("Lime green")
  1395. wait(1)
  1396. end
  1397. p = Instance.new("Part")
  1398. p.Parent = Torso
  1399. p.CFrame = Torso.CFrame
  1400. p.Anchored = true
  1401. p.Size = Vector3.new(1,1,1)
  1402. p.BrickColor = BrickColor.new("Bright yellow")
  1403. p.FormFactor = "Symmetric"
  1404. pm = Instance.new("SpecialMesh")
  1405. pm.Parent = p
  1406. pm.MeshType = "Sphere"
  1407. e = Instance.new("Explosion")
  1408. e.Parent = Torso
  1409. e.BlastRadius = 8
  1410. e.Position = Torso.Position
  1411. for i = 1, 25 do
  1412. pm.Scale = pm.Scale + Vector3.new(.5,.5,.5)
  1413. p.Transparency = p.Transparency + .04
  1414. wait()
  1415. end
  1416. end
  1417. end
  1418. end
  1419. Vip.Chatted:connect(onChatted)
  1420.  
  1421. function onChatted(msg)
  1422. if Healing == true then
  1423. if msg == "Activate" then
  1424. for i = 1, 10 do
  1425. Middle.Transparency = 0
  1426. MiddleMesh.Scale = Vector3.new(.01,.1,.01)
  1427. for i = 1, 20 do
  1428. MiddleMesh.Scale = MiddleMesh.Scale + Vector3.new(.25,0,.25)
  1429. Middle.Transparency = Middle.Transparency + .05
  1430. wait()
  1431. end
  1432. wait(3)
  1433. end
  1434. end
  1435. end
  1436. end
  1437. Vip.Chatted:connect(onChatted)
  1438. -- mediafire
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement