TehLy

Gui

Sep 4th, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 65.86 KB | None | 0 0
  1. --[[============================================FaZe-Reborn================================================
  2.  
  3. _____ _ _ ____ _____ _____ _
  4. / ____| | | | | | _ \ _ | __ \ / ____| | |
  5. | | ___ __| | ___ __| | | |_) |_ _(_) | | | | _____ _| (___ ___ __ _ _ __ | |_ ___ _ __
  6. | | / _ \ / _` |/ _ \/ _` | | _ <| | | | | | | |/ _ \ \ / /\___ \ / __/ _` | '_ \| __/ _ \ '__|
  7. | |___| (_) | (_| | __/ (_| | | |_) | |_| |_ | |__| | __/\ V / ____) | (_| (_| | |_) | || __/ |
  8. \_____\___/ \__,_|\___|\__,_| |____/ \__, (_) |_____/ \___| \_/ |_____/ \___\__,_| .__/ \__\___|_|
  9. __/ | | |
  10. |___/ |_|
  11.  
  12. --===============================================FaZe-Reborn================================================]]
  13. local Gui = Instance.new("ScreenGui", game.CoreGui)
  14. Gui.Name = "FaZe_Reborn Gui"
  15.  
  16. local Frame = Instance.new("ScrollingFrame", Gui)
  17. Frame.Name = "Hub"
  18. Frame.BorderColor3 = Color3.new(255,255,255)
  19. Frame.Size = UDim2.new(0,500,0,500)
  20. Frame.Position = UDim2.new(-1,250,0.5,-250)
  21. Frame.BackgroundColor3 = Color3.new(170,0,0)
  22. Frame.BackgroundTransparency = 0.3
  23. Frame.BorderSizePixel = 2
  24. Frame.ZIndex = 2
  25. Frame.BackgroundColor3 = Color3.new(170,0,0)
  26.  
  27. local Scripts = Instance.new("TextButton", Frame)
  28. Scripts.TextColor3 = Color3.new(255,255,255)
  29. Scripts.BackgroundTransparency = 1
  30. Scripts.ZIndex = 2
  31. Scripts.Size = UDim2.new(1,0,0,30)
  32. Scripts.Font = "SourceSansBold"
  33. Scripts.Name = "1"
  34. Scripts.FontSize = "Size32"
  35. Scripts.Text = "Scripts: "
  36.  
  37. local ScriptingFrame = Instance.new("Frame", Gui)
  38. ScriptingFrame.Name = "ScriptingFrame"
  39. ScriptingFrame.Size = UDim2.new(0,500,0,500)
  40. ScriptingFrame.Position = UDim2.new(0.5,-250,0.5,-250)
  41. ScriptingFrame.BorderColor3 = Color3.new(255,255,255)
  42. ScriptingFrame.BackgroundColor3 = Color3.new(170,0,0)
  43. ScriptingFrame.BackgroundTransparency = 0.3
  44. ScriptingFrame.BorderSizePixel = 2
  45. ScriptingFrame.Visible = false
  46.  
  47. local PlayerFrame = Instance.new("Frame", Gui)
  48. PlayerFrame.Name = "PlayerFrame"
  49. PlayerFrame.Size = UDim2.new(0,500,0,500)
  50. PlayerFrame.Position = UDim2.new(0.5,-250,0.5,-250)
  51. PlayerFrame.BorderColor3 = Color3.new(255,255,255)
  52. PlayerFrame.BackgroundColor3 = Color3.new(170,0,0)
  53. PlayerFrame.BackgroundTransparency = 0.3
  54. PlayerFrame.BorderSizePixel = 2
  55. PlayerFrame.Visible = false
  56.  
  57. local ScriptBox = Instance.new("TextBox", ScriptingFrame)
  58. ScriptBox.Font = "SourceSansItalic"
  59. ScriptBox.FontSize = "Size24"
  60. ScriptBox.Text = "Script Here"
  61. ScriptBox.TextWrapped = true
  62. ScriptBox.BackgroundTransparency = 0.6
  63. ScriptBox.Size = UDim2.new(1,0,0.9,0)
  64. ScriptBox.TextXAlignment = "Left"
  65. ScriptBox.TextYAlignment = "Top"
  66.  
  67. local Execute = Instance.new("TextButton", ScriptingFrame)
  68. Execute.Text = "Execute"
  69. Execute.BackgroundColor3 = Color3.new(0,0,0)
  70. Execute.TextColor3 = Color3.new(255,0,0)
  71. Execute.Size = UDim2.new(0.8,0,0.1,0)
  72. Execute.Position = UDim2.new(0.2,0,0.9,0)
  73. Execute.Font = "SourceSansBold"
  74. Execute.FontSize = "Size60"
  75.  
  76. local Back = Instance.new("TextButton", ScriptingFrame)
  77. Back.Text = "<-- Back"
  78. Back.Name = "Back"
  79. Back.BackgroundTransparency = 1
  80. Back.TextColor3 = Color3.new(255,255,255)
  81. Back.Size = UDim2.new(0.2,0,0.1,0)
  82. Back.Position = UDim2.new(0,0,0.9,0)
  83. Back.Font = "SourceSansBold"
  84. Back.FontSize = "Size24"
  85.  
  86. local PBack = Instance.new("TextButton", PlayerFrame)
  87. PBack.Text = "<-- Back"
  88. PBack.BackgroundTransparency = 1
  89. PBack.TextColor3 = Color3.new(255,255,255)
  90. PBack.Size = UDim2.new(0.2,0,0.1,0)
  91. PBack.Position = UDim2.new(0,0,0.9,0)
  92. PBack.Font = "SourceSansBold"
  93. PBack.FontSize = "Size24"
  94.  
  95. local Editor = Instance.new("TextLabel", PlayerFrame)
  96. Editor.Name = "1"
  97. Editor.FontSize = "Size32"
  98. Editor.Font = "SourceSansBold"
  99. Editor.BackgroundTransparency = 1
  100. Editor.Size = UDim2.new(1,0,0,50)
  101. Editor.TextColor3 = Color3.new(255,255,255)
  102. Editor.Text = "Player Editor"
  103.  
  104. Execute.MouseButton1Down:connect(function()
  105. local script = Instance.new('LocalScript', Gui)
  106. local sc, loaderr = loadstring(ScriptBox.Text, '='..script:GetFullName())
  107. if not sc then
  108. Execute.Text = "Error"
  109. ScriptBox.Text = loaderr
  110. wait(5)
  111. Execute.Text = "Execute"
  112. ScriptBox.Text = "Script Here"
  113. else
  114. sc()
  115. ScriptBox.Text = "Script Loaded"
  116. Execute.Text = "Executed"
  117. wait(3)
  118. Execute.Text = "Execute"
  119. ScriptBox.Text = "Script Here"
  120. end
  121. end)
  122.  
  123. local PlayerList = Instance.new("ScrollingFrame", Gui)
  124. PlayerList:TweenPosition(UDim2.new(-0.86, 250, 0.5, -250))
  125. PlayerList.Name = "PlayerList"
  126. PlayerList.Size = UDim2.new(0,250,0,500)
  127. PlayerList.Position = UDim2.new(1,0,0,0)
  128. PlayerList.BorderColor3 = Color3.new(255,255,255)
  129. PlayerList.BackgroundColor3 = Color3.new(170,0,0)
  130. PlayerList.BackgroundTransparency = 0.3
  131. PlayerList.BorderSizePixel = 2
  132.  
  133. local PlayerLabel = Instance.new("TextButton", PlayerList)
  134. PlayerLabel.Name = "1"
  135. PlayerLabel.Size = UDim2.new(1,0,0,30)
  136. PlayerLabel.BackgroundTransparency = 1
  137. PlayerLabel.TextColor3 = Color3.new(255,255,255)
  138. PlayerLabel.Text = "PlayerList: "
  139. PlayerLabel.Font = "SourceSansBold"
  140. PlayerLabel.FontSize = "Size32"
  141.  
  142. Back.MouseButton1Down:connect(function()
  143. ScriptingFrame.Visible = false
  144. PlayerList.Visible = true
  145. Frame.Visible = true
  146. end)
  147.  
  148. PBack.MouseButton1Down:connect(function()
  149. PlayerFrame.Visible = false
  150. Frame.Visible = true
  151. end)
  152.  
  153. function playerlists()
  154. for i,c in pairs(PlayerList:GetChildren()) do
  155. if c.Name ~= "1" then
  156. c:Destroy()
  157. end
  158. end
  159. local e = 2
  160. local previousvalue = 1
  161. for i,v in pairs(game.Players:GetChildren()) do
  162. if PlayerList:FindFirstChild('1') then
  163. local q = Instance.new("TextButton", PlayerList)
  164. q.Size = UDim2.new(1,0,0,30)
  165. q.BackgroundTransparency = 1
  166. q.TextColor3 = Color3.new(255,255,255)
  167. q.Name = e
  168. q.Text = v.Name
  169. q.Font = "SourceSansBold"
  170. q.FontSize = "Size32"
  171. q.Position = PlayerList[previousvalue].Position+UDim2.new(0,0,0,38)
  172. previousvalue = e
  173. e = e+1
  174. end
  175. end
  176. end
  177.  
  178. playerlists()
  179. for i,p in pairs(PlayerList:GetChildren()) do
  180. if p:IsA("TextButton") and p.Name ~= "1" then
  181. p.MouseButton1Down:connect(function()
  182. for i,v in pairs(PlayerFrame:GetChildren()) do
  183. if v:IsA("TextBox") then
  184. v.Text = p.Text
  185. end
  186. end
  187. Frame.Visible = false
  188. PlayerFrame.Visible = true
  189. end)
  190. end
  191. end
  192.  
  193. game.Players.PlayerAdded:connect(function()
  194. playerlists()
  195. for i,p in pairs(PlayerList:GetChildren()) do
  196. if p:IsA("TextButton") and p.Name ~= "1" then
  197. p.MouseButton1Down:connect(function()
  198. for i,v in pairs(PlayerFrame:GetChildren()) do
  199. if v:IsA("TextBox") then
  200. v.Text = p.Text
  201. end
  202. end
  203. Frame.Visible = false
  204. PlayerFrame.Visible = true
  205. end)
  206. end
  207. end
  208. end)
  209.  
  210. game.Players.PlayerRemoving:connect(function()
  211. playerlists()
  212. for i,p in pairs(PlayerList:GetChildren()) do
  213. if p:IsA("TextButton") and p.Name ~= "1" then
  214. p.MouseButton1Down:connect(function()
  215. for i,v in pairs(PlayerFrame:GetChildren()) do
  216. if v:IsA("TextBox") then
  217. v.Text = p.Text
  218. end
  219. end
  220. Frame.Visible = false
  221. PlayerFrame.Visible = true
  222. end)
  223. end
  224. end
  225. end)
  226.  
  227. local Open = Instance.new("ImageButton", Gui)
  228. Open.Position = UDim2.new(0,0,0.6,0)
  229. Open.Size = UDim2.new(0,50,0,50)
  230. Open.BackgroundTransparency = 1
  231. Open.Image = "http://www.roblox.com/asset/?id=195013311"
  232.  
  233. local Close = Instance.new("ImageButton", Frame)
  234. Close.Name = "Close_Logo"
  235. Close.Size = UDim2.new(0,100,0,100)
  236. Close.BackgroundTransparency = 1
  237. Close.Position = UDim2.new(0,-80,0,-80)
  238. Close.Rotation = -35
  239. Close.Image = "http://www.roblox.com/asset/?id=195013311"
  240.  
  241. Close.MouseButton1Down:connect(function(click)
  242. Frame:TweenPosition(UDim2.new(-1, 250, 0.5, -250))
  243. PlayerList:TweenPosition(UDim2.new(-0.86, 250, 0.5, -250))
  244. Open:TweenPosition(UDim2.new(0,0,0.6,0))
  245. playerlists()
  246. for i,p in pairs(PlayerList:GetChildren()) do
  247. if p:IsA("TextButton") and p.Name ~= "1" then
  248. p.MouseButton1Down:connect(function()
  249. for i,v in pairs(PlayerFrame:GetChildren()) do
  250. if v:IsA("TextBox") then
  251. v.Text = p.Text
  252. end
  253. end
  254. Frame.Visible = false
  255. PlayerFrame.Visible = true
  256. end)
  257. end
  258. end
  259. end)
  260.  
  261. Open.MouseButton1Down:connect(function(click)
  262. playerlists()
  263. for i,p in pairs(PlayerList:GetChildren()) do
  264. if p:IsA("TextButton") and p.Name ~= "1" then
  265. p.MouseButton1Down:connect(function()
  266. for i,v in pairs(PlayerFrame:GetChildren()) do
  267. if v:IsA("TextBox") then
  268. v.Text = p.Text
  269. end
  270. end
  271. Frame.Visible = false
  272. PlayerFrame.Visible = true
  273. end)
  274. end
  275. end
  276. Frame:TweenPosition(UDim2.new(0.5,-250,0.5,-250))
  277. PlayerList:TweenPosition(UDim2.new(0.762, -250, 0.5, -250))
  278. Open:TweenPosition(UDim2.new(0,-55,0.6,0))
  279. end)
  280.  
  281. local Title = Instance.new("TextLabel", Frame)
  282. Title.BackgroundTransparency = 1
  283. Title.Position = UDim2.new(0,0,0,-50)
  284. Title.Size = UDim2.new(1.5,0,0,0)
  285. Title.TextColor3 = Color3.new(255,255,255)
  286. Title.TextStrokeColor3 = Color3.new(170,0,0)
  287. Title.TextStrokeTransparency = 0
  288. Title.Font = "SourceSansBold"
  289. Title.FontSize = "Size60"
  290. Title.Text = "FaZe-Reborn"
  291.  
  292. ScriptTable = {Aimbot = "Aimbot",
  293. Cyborg = function () BlasterKey = "f"
  294. EyeLaserKey = "q"
  295. local lp = game.Players.LocalPlayer
  296. local lpc = lp.Character
  297. firable = false
  298. blast = false
  299. wait(0.05)
  300. lpc["Body Colors"].HeadColor = BrickColor.new("Institutional white")
  301. lpc["Body Colors"].LeftArmColor = BrickColor.new("Institutional white")
  302. lpc["Body Colors"].LeftLegColor = BrickColor.new("Institutional white")
  303. lpc["Body Colors"].RightArmColor = BrickColor.new("Institutional white")
  304. lpc["Body Colors"].RightLegColor = BrickColor.new("Institutional white")
  305. lpc["Body Colors"].TorsoColor = BrickColor.new("Institutional white")
  306. for _,a in pairs(lpc:GetChildren()) do
  307. if lpc.Torso:FindFirstChild("roblox") then
  308. lpc.Torso.roblox:Destroy()
  309. end
  310. if a:IsA("Hat") or a:IsA("Shirt") or a:IsA("Pants") or a:IsA("ShirtGraphic")then
  311. a:Destroy()
  312. end
  313. end
  314. local shades = Instance.new("Part", lpc.Head)
  315. shades.Size = Vector3.new(0.8,0.2,0.2)
  316. shades.CanCollide = false
  317. shades.BrickColor = BrickColor.new("Bright green")
  318. shades.Position = lpc.Head.Position
  319. local sw = Instance.new("Weld", shades)
  320. sw.Part0 = shades
  321. sw.Part1 = lpc.Head
  322. sw.C0 = CFrame.new(0,-0.2,0.5)
  323. local outline = Instance.new("Part", lpc.Torso)
  324. outline.Size = Vector3.new(2.1,2.1,0.2)
  325. outline.CanCollide = false
  326. outline.BrickColor = BrickColor.new("Bright green")
  327. outline.Position = lpc.Torso.Position
  328. local olw = Instance.new("Weld", outline)
  329. olw.Part0 = outline
  330. olw.Part1 = lpc.Torso
  331. local shadeso = Instance.new("Part", lpc.Head)
  332. shadeso.Size = Vector3.new(0.85,0.25,0.25)
  333. shadeso.CanCollide = false
  334. shadeso.BrickColor = BrickColor.new("Really black")
  335. shadeso.Position = lpc.Head.Position
  336. local swo = Instance.new("Weld", shadeso)
  337. swo.Part0 = shadeso
  338. swo.Part1 = lpc.Head
  339. swo.C0 = CFrame.new(0,-0.2,0.45)
  340. local orb = Instance.new("Part", lpc.Torso)
  341. orb.Size = Vector3.new(0.5,0.5,0.5)
  342. orb.CanCollide = false
  343. orb.Shape = "Ball"
  344. orb.TopSurface = "Smooth"
  345. orb.BottomSurface = "Smooth"
  346. orb.BrickColor = BrickColor.new("Bright green")
  347. orb.Position = lpc.Torso.Position
  348. local swo = Instance.new("Weld", orb)
  349. swo.Part0 = orb
  350. swo.Part1 = lpc.Torso
  351. swo.C0 = CFrame.new(0,0,0.45)
  352. local shard1 = Instance.new("Part", lpc.Torso)
  353. shard1.Size = Vector3.new(0.2,0.45,0.2)
  354. shard1.CanCollide = false
  355. shard1.BrickColor = BrickColor.new("Bright green")
  356. shard1.Position = lpc.Torso.Position
  357. local s1 = Instance.new("Weld", shard1)
  358. s1.Part0 = shard1
  359. s1.Part1 = lpc.Torso
  360. s1.C0 = CFrame.new(0,-0.6,0.45)
  361. local shard2 = Instance.new("Part", lpc.Torso)
  362. shard2.Size = Vector3.new(0.2,0.45,0.2)
  363. shard2.CanCollide = false
  364. shard2.BrickColor = BrickColor.new("Bright green")
  365. shard2.Position = lpc.Torso.Position
  366. local s2 = Instance.new("Weld", shard2)
  367. s2.Part0 = shard2
  368. s2.Part1 = lpc.Torso
  369. s2.C0 = CFrame.new(0,0.6,0.45)
  370. local shard3 = Instance.new("Part", lpc.Torso)
  371. shard3.Size = Vector3.new(0.45,0.2,0.2)
  372. shard3.CanCollide = false
  373. shard3.BrickColor = BrickColor.new("Bright green")
  374. shard3.Position = lpc.Torso.Position
  375. local s3 = Instance.new("Weld", shard3)
  376. s3.Part0 = shard3
  377. s3.Part1 = lpc.Torso
  378. s3.C0 = CFrame.new(0.6,0,0.45)
  379. local shard4 = Instance.new("Part", lpc.Torso)
  380. shard4.Size = Vector3.new(0.45,0.2,0.2)
  381. shard4.CanCollide = false
  382. shard4.BrickColor = BrickColor.new("Bright green")
  383. shard4.Position = lpc.Torso.Position
  384. local s4 = Instance.new("Weld", shard4)
  385. s4.Part0 = shard4
  386. s4.Part1 = lpc.Torso
  387. s4.C0 = CFrame.new(-0.6,0,0.45)
  388. wait(0.05)
  389. local torb = Instance.new("Part", lpc.Torso)
  390. torb.Size = Vector3.new(0.5,0.5,0.5)
  391. torb.CanCollide = false
  392. torb.Shape = "Ball"
  393. torb.TopSurface = "Smooth"
  394. torb.BottomSurface = "Smooth"
  395. torb.BrickColor = BrickColor.new("Bright green")
  396. torb.Position = lpc.Torso.Position
  397. local swo = Instance.new("Weld", orb)
  398. swo.Part0 = torb
  399. swo.Part1 = lpc.Torso
  400. swo.C0 = CFrame.new(0,0,-0.45)
  401. local tshard1 = Instance.new("Part", lpc.Torso)
  402. tshard1.Size = Vector3.new(0.2,0.45,0.2)
  403. tshard1.CanCollide = false
  404. tshard1.BrickColor = BrickColor.new("Bright green")
  405. tshard1.Position = lpc.Torso.Position
  406. local ts1 = Instance.new("Weld", shard1)
  407. ts1.Part0 = tshard1
  408. ts1.Part1 = lpc.Torso
  409. ts1.C0 = CFrame.new(0,-0.6,-0.45)
  410. local tshard2 = Instance.new("Part", lpc.Torso)
  411. tshard2.Size = Vector3.new(0.2,0.45,0.2)
  412. tshard2.CanCollide = false
  413. tshard2.BrickColor = BrickColor.new("Bright green")
  414. tshard2.Position = lpc.Torso.Position
  415. local ts2 = Instance.new("Weld", shard2)
  416. ts2.Part0 = tshard2
  417. ts2.Part1 = lpc.Torso
  418. ts2.C0 = CFrame.new(0,0.6,-0.45)
  419. local tshard3 = Instance.new("Part", lpc.Torso)
  420. tshard3.Size = Vector3.new(0.45,0.2,0.2)
  421. tshard3.CanCollide = false
  422. tshard3.BrickColor = BrickColor.new("Bright green")
  423. tshard3.Position = lpc.Torso.Position
  424. local ts3 = Instance.new("Weld", tshard3)
  425. ts3.Part0 = tshard3
  426. ts3.Part1 = lpc.Torso
  427. ts3.C0 = CFrame.new(0.6,0,-0.45)
  428. local tshard4 = Instance.new("Part", lpc.Torso)
  429. tshard4.Size = Vector3.new(0.45,0.2,0.2)
  430. tshard4.CanCollide = false
  431. tshard4.BrickColor = BrickColor.new("Bright green")
  432. tshard4.Position = lpc.Torso.Position
  433. local ts4 = Instance.new("Weld", tshard4)
  434. ts4.Part0 = tshard4
  435. ts4.Part1 = lpc.Torso
  436. ts4.C0 = CFrame.new(-0.6,0,-0.45)
  437. local la1 = Instance.new("Part", lpc["Left Arm"])
  438. la1.CanCollide = false
  439. la1.BrickColor = BrickColor.new("Bright green")
  440. la1.Size = Vector3.new(1.1,2.1,0)
  441. la1.Position = lpc["Left Arm"].Position
  442. local la1w = Instance.new("Weld", lpc["Left Arm"])
  443. la1w.Part0 = la1
  444. la1w.Part1 = lpc["Left Arm"]
  445. local la2 = Instance.new("Part", lpc["Left Arm"])
  446. la2.CanCollide = false
  447. la2.BrickColor = BrickColor.new("Bright green")
  448. la2.Size = Vector3.new(0,2.1,1.1)
  449. la2.Position = lpc["Left Arm"].Position
  450. local la2w = Instance.new("Weld", lpc["Left Arm"])
  451. la2w.Part0 = la2
  452. la2w.Part1 = lpc["Left Arm"]
  453. local lao = Instance.new("Part", lpc["Left Arm"])
  454. lao.CanCollide = false
  455. lao.Shape = "Ball"
  456. lao.BrickColor = BrickColor.new("Bright green")
  457. lao.Size = Vector3.new(0.5,0.5,0.5)
  458. lao.TopSurface = "Smooth"
  459. lao.BottomSurface = "Smooth"
  460. la2.Position = lpc["Left Arm"].Position
  461. local laow = Instance.new("Weld", lpc["Left Arm"])
  462. laow.Part0 = lao
  463. laow.Part1 = lpc["Left Arm"]
  464. laow.C0 = CFrame.new(0,-1,0)
  465. local ra1 = Instance.new("Part", lpc["Right Arm"])
  466. ra1.CanCollide = false
  467. ra1.BrickColor = BrickColor.new("Bright green")
  468. ra1.Size = Vector3.new(1.1,2.1,0)
  469. ra1.Position = lpc["Right Arm"].Position
  470. local ra1w = Instance.new("Weld", lpc["Right Arm"])
  471. ra1w.Part0 = ra1
  472. ra1w.Part1 = lpc["Right Arm"]
  473. local ra2 = Instance.new("Part", lpc["Right Arm"])
  474. ra2.CanCollide = false
  475. ra2.BrickColor = BrickColor.new("Bright green")
  476. ra2.Size = Vector3.new(0,2.1,1.1)
  477. ra2.Position = lpc["Right Arm"].Position
  478. local ra2w = Instance.new("Weld", lpc["Right Arm"])
  479. ra2w.Part0 = ra2
  480. ra2w.Part1 = lpc["Right Arm"]
  481. local rao = Instance.new("Part", lpc["Right Arm"])
  482. rao.CanCollide = false
  483. rao.Shape = "Ball"
  484. rao.BrickColor = BrickColor.new("Bright green")
  485. rao.Size = Vector3.new(0.5,0.5,0.5)
  486. rao.TopSurface = "Smooth"
  487. rao.BottomSurface = "Smooth"
  488. ra2.Position = lpc["Right Arm"].Position
  489. local raow = Instance.new("Weld", lpc["Right Arm"])
  490. raow.Part0 = rao
  491. raow.Part1 = lpc["Right Arm"]
  492. raow.C0 = CFrame.new(0,-1,0)
  493. local rl1 = Instance.new("Part", lpc["Right Leg"])
  494. rl1.CanCollide = false
  495. rl1.BrickColor = BrickColor.new("Bright green")
  496. rl1.Size = Vector3.new(1.1,2.1,0)
  497. rl1.Position = lpc["Right Leg"].Position
  498. local rl1w = Instance.new("Weld", lpc["Right Leg"])
  499. rl1w.Part0 = rl1
  500. rl1w.Part1 = lpc["Right Leg"]
  501. local rl2 = Instance.new("Part", lpc["Right Leg"])
  502. rl2.CanCollide = false
  503. rl2.BrickColor = BrickColor.new("Bright green")
  504. rl2.Size = Vector3.new(0,2.1,1.1)
  505. rl2.Position = lpc["Right Leg"].Position
  506. local rl2w = Instance.new("Weld", lpc["Right Leg"])
  507. rl2w.Part0 = rl2
  508. rl2w.Part1 = lpc["Right Leg"]
  509. local ll1 = Instance.new("Part", lpc["Left Leg"])
  510. ll1.CanCollide = false
  511. ll1.BrickColor = BrickColor.new("Bright green")
  512. ll1.Size = Vector3.new(1.1,2.1,0)
  513. ll1.Position = lpc["Left Leg"].Position
  514. local ll1w = Instance.new("Weld", lpc["Left Leg"])
  515. ll1w.Part0 = ll1
  516. ll1w.Part1 = lpc["Left Leg"]
  517. local ll2 = Instance.new("Part", lpc["Left Leg"])
  518. ll2.CanCollide = false
  519. ll2.BrickColor = BrickColor.new("Bright green")
  520. ll2.Size = Vector3.new(0,2.1,1.1)
  521. ll2.Position = lpc["Left Leg"].Position
  522. local ll2w = Instance.new("Weld", lpc["Left Leg"])
  523. ll2w.Part0 = ll2
  524. ll2w.Part1 = lpc["Left Leg"]
  525. local mouse = game.Players.LocalPlayer:GetMouse()
  526. lp = game.Players.LocalPlayer
  527. lpc = game.Players.LocalPlayer.Character
  528. local shock = Instance.new("Sound", shades)
  529. shock.Volume = 1
  530. shock.SoundId = "http://www.roblox.com/asset/?id=184211520"
  531. mouse.KeyDown:connect(function(key)
  532. if key == EyeLaserKey and blast == false then
  533. if firable == false then
  534. blast = false
  535. firable = true
  536. elseif firable == true then
  537. firable = false
  538. end
  539. end
  540. end)
  541. mouse.KeyDown:connect(function(key)
  542. if key == BlasterKey and firable == false then
  543. if blast == false then
  544. blast = true
  545. firable = false
  546. elseif blast == true then
  547. blast = false
  548. end
  549. end
  550. end)
  551. fire = false
  552. fired = 0
  553. mouse.Button1Down:connect(function(click)
  554. if blast == true then
  555. if lpc.Torso:FindFirstChild("Blaster") then
  556. lpc.Torso.Blaster:Destroy()
  557. end
  558. if game.Workspace:FindFirstChild("Blaster") then
  559. game.Workspace.Blaster:Destroy()
  560. end
  561. local borb = Instance.new("Part", lpc.Torso)
  562. borb.Name = "Blaster"
  563. borb.Size = Vector3.new(0.5,0.5,0.5)
  564. borb.CanCollide = false
  565. borb.Shape = "Ball"
  566. borb.TopSurface = "Smooth"
  567. borb.BottomSurface = "Smooth"
  568. borb.BrickColor = BrickColor.new("Bright green")
  569. borb.Position = lpc.Torso.Position
  570. local swob = Instance.new("Weld", borb)
  571. swob.Part0 = lpc.Torso
  572. swob.Part1 = borb
  573. swob.C0 = CFrame.new(0,0,-2)
  574. for i = 1, 20 do
  575. wait(0.03)
  576. borb.Size = borb.Size+Vector3.new(0.1,0.1,0.1)
  577. local swob = Instance.new("Weld", borb)
  578. swob.Part0 = lpc.Torso
  579. swob.Part1 = borb
  580. swob.C0 = CFrame.new(0,0,-2)
  581. end
  582. local fib = Instance.new("Fire", borb)
  583. fib.Color = Color3.new(10, 255, 10)
  584. fib.SecondaryColor = Color3.new(25, 50, 25)
  585. borb:Clone().Parent = game.Workspace
  586. borb:Destroy()
  587. wait(0.03)
  588. game.Workspace.Blaster.Weld:Destroy()
  589. local y = Instance.new("BodyVelocity", game.Workspace.Blaster)
  590. y.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  591. y.velocity = lpc.Torso.CFrame.lookVector*80
  592. game.Workspace.Blaster.Touched:connect(function(hit)
  593. if hit.Parent:FindFirstChild("Humanoid") then
  594. hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - math.random(15,35)
  595. game.Workspace.Blaster:Destroy()
  596. else
  597. game.Workspace.Blaster:Destroy()
  598. end
  599. end)
  600. else
  601. if firable == true then
  602. fire = true
  603. while fire do
  604. fired = fired+1
  605. if fired == 30 then
  606. fired = 0
  607. for i,v in pairs(game.Workspace:GetChildren()) do
  608. if v.Name == "strike" then
  609. v:Destroy()
  610. end
  611. end
  612. end
  613. wait(0)
  614. local ray = Ray.new(shades.CFrame.p, (mouse.Hit.p - shades.CFrame.p).unit * 300)
  615. local part, position = workspace:FindPartOnRay(ray, lp.Character, false, true)
  616. local strike = Instance.new("Part", workspace)
  617. strike.BrickColor = BrickColor.new("Bright green")
  618. strike.FormFactor = "Custom"
  619. strike.Transparency = 0.25
  620. strike.Name = "strike"
  621. strike.BottomSurface = "Smooth"
  622. strike.TopSurface = "Smooth"
  623. strike.Anchored = true
  624. strike.Locked = true
  625. strike.CanCollide = false
  626. local distance = (shades.CFrame.p - position).magnitude
  627. strike.Size = Vector3.new(0.8, 0.2, distance)
  628. strike.CFrame = CFrame.new(shades.CFrame.p, position) * CFrame.new(0, 0, -distance / 2)
  629. shock:Stop()
  630. shock:Play()
  631. game:GetService("Debris"):AddItem(strike, 0.1)
  632. if part then
  633. local humanoid = part.Parent:FindFirstChild("Humanoid")
  634. if not humanoid then
  635. humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  636. end
  637. if humanoid then
  638. humanoid:TakeDamage(2)
  639. end
  640. end
  641. end
  642. end
  643. end
  644. end)
  645. mouse.Button1Up:connect(function(click)
  646. fire = false
  647. end) end,
  648. GrimReaper = function() Bp = game.Players.LocalPlayer.Backpack
  649. jun = Bp.Parent
  650. local o = 0
  651.  
  652. BlastRing = Instance.new("Part")
  653. BlastRing.Parent = game.Lighting
  654. BlastRing.Name = "BlastRing"
  655. BlastRing.formFactor = "Symmetric"
  656. BlastRing.Size = Vector3.new(0, 0, 0)
  657. BlastRing.CanCollide = false
  658. BlastRing.TopSurface = "Smooth"
  659. BlastRing.BottomSurface = "Smooth"
  660. BlastRing.BrickColor = BrickColor.new("Really red")
  661. BlastRing.Reflectance = 0
  662. BlastRing.Anchored = true
  663. Mesh2 = Instance.new("SpecialMesh")
  664. Mesh2.Parent = BlastRing
  665. Mesh2.MeshType = "FileMesh"
  666. Mesh2.MeshId = "http://www.roblox.com/Asset/?id=9982590"
  667. Mesh2.Scale = Vector3.new(1, 1, 1)
  668.  
  669. ExsplosionRing = Instance.new("Part")
  670. ExsplosionRing.Parent = game.Lighting
  671. ExsplosionRing.Name = "Explosion Ring"
  672. ExsplosionRing.formFactor = "Symmetric"
  673. ExsplosionRing.Size = Vector3.new(0, 0, 0)
  674. ExsplosionRing.CanCollide = false
  675. ExsplosionRing.TopSurface = "Smooth"
  676. ExsplosionRing.BottomSurface = "Smooth"
  677. ExsplosionRing.BrickColor = BrickColor.new("Black")
  678. ExsplosionRing.Transparency = 0.3
  679. ExsplosionRing.Reflectance = 0
  680. ExsplosionRing.Anchored = true
  681. Mesh3 = Instance.new("SpecialMesh")
  682. Mesh3.Parent = ExsplosionRing
  683. Mesh3.MeshType = "FileMesh"
  684. Mesh3.MeshId = "http://www.roblox.com/Asset/?id=20329976"
  685. Mesh3.Scale = Vector3.new(1, 1, 1)
  686. Mesh3.Offset = Vector3.new(0,-2,0)
  687.  
  688.  
  689. jun.Character.Humanoid.WalkSpeed = 0
  690.  
  691. blastring2 = BlastRing:clone()
  692. blastring2.Parent = jun.Character
  693. blastring2.Position = jun.Character.Torso.Position
  694. blastring2.BrickColor = BrickColor.new("Really red")
  695. blastring2.Transparency = 0.5
  696. blastring2.Reflectance = 0
  697.  
  698. mk = Instance.new("Sound",blastring2)
  699. mk.Volume = 1
  700. mk.SoundId = "http://www.roblox.com/Asset?ID=211422742"
  701. mk:Play()
  702.  
  703. c = Instance.new("Sound",blastring2)
  704. c.Volume = 1
  705. c.SoundId = "http://www.roblox.com/Asset?ID=244578827"
  706. c:Play()
  707.  
  708. for i = 1, 50 do
  709. wait(0.03)
  710. blastring2.Mesh.Scale = blastring2.Mesh.Scale + Vector3.new(0.1, 0.1, 0.1)
  711. blastring2.Transparency = blastring2.Transparency + 0.01
  712. end
  713.  
  714. blastring3 = ExsplosionRing:clone()
  715. blastring3.Parent = jun.Character
  716. blastring3.Position = jun.Character.Torso.Position
  717. blastring3.BrickColor = BrickColor.new("Black")
  718. blastring3.Transparency = 0.3
  719. blastring3.Reflectance = 0
  720.  
  721. p = Instance.new("Sound",blastring3)
  722. p.Volume = 1
  723. p.SoundId = "http://www.roblox.com/Asset?ID=180120107"
  724.  
  725. for i = 1, 50 do
  726. wait(0.03)
  727. blastring3.Mesh.Scale = blastring3.Mesh.Scale + Vector3.new(0.1, 0.1, 0.1)
  728. blastring3.Transparency = blastring3.Transparency + 0.01
  729. end
  730. c:Stop()
  731. wait(.5)
  732. mk:Stop()
  733. p:Play()
  734. blastring2:remove()
  735. blastring3:Destroy()
  736.  
  737. game.Players.LocalPlayer.Character.Torso.BrickColor = BrickColor.new("Dark stone grey")
  738. game.Players.LocalPlayer.Character['Right Arm'].BrickColor = BrickColor.new("Dark stone grey")
  739. game.Players.LocalPlayer.Character['Left Arm'].BrickColor = BrickColor.new("Dark stone grey")
  740. game.Players.LocalPlayer.Character['Right Leg'].BrickColor = BrickColor.new("Dark stone grey")
  741. game.Players.LocalPlayer.Character['Left Leg'].BrickColor = BrickColor.new("Dark stone grey")
  742. game.Players.LocalPlayer.Character.Head.BrickColor = BrickColor.new("Dark stone grey")
  743. game.Players.LocalPlayer.Character["Body Colors"].HeadColor = BrickColor.new("Dark stone grey")
  744. game.Players.LocalPlayer.Character["Body Colors"].LeftArmColor = BrickColor.new("Dark stone grey")
  745. game.Players.LocalPlayer.Character["Body Colors"].RightArmColor = BrickColor.new("Dark stone grey")
  746. game.Players.LocalPlayer.Character["Body Colors"].LeftLegColor = BrickColor.new("Dark stone grey")
  747. game.Players.LocalPlayer.Character["Body Colors"].RightLegColor = BrickColor.new("Dark stone grey")
  748. game.Players.LocalPlayer.Character["Body Colors"].TorsoColor = BrickColor.new("Dark stone grey")
  749. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  750. if v.ClassName == "Hat" then
  751. v:Destroy()
  752. end
  753. end
  754. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  755. if v.ClassName == "Shirt" then
  756. v:Destroy()
  757. end
  758. end
  759. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  760. if v.ClassName == "Pants" then
  761. v:Destroy()
  762. end
  763. end
  764. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  765. if v.ClassName == "ShirtGraphic" then
  766. v:Destroy()
  767. end
  768. end
  769. st = Instance.new("Shirt",game.Players.LocalPlayer.Character)
  770. st.ShirtTemplate = "http://www.roblox.com/asset/?id=146541677"
  771. pt = Instance.new("Pants",game.Players.LocalPlayer.Character)
  772. pt.PantsTemplate = "http://www.roblox.com/asset/?id=146542180"
  773. sg = Instance.new("ShirtGraphic",game.Players.LocalPlayer.Character)
  774. sg.Graphic = "http://www.roblox.com/asset/?id=273262785"
  775. game:GetObjects("rbxassetid://16469427")[1].Parent=game.Players.LocalPlayer.Character
  776. wait(.5)
  777. game:GetObjects("rbxassetid://133553855")[1].Parent=game.Players.LocalPlayer.Character
  778. wait(.5)
  779. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 21e8
  780. wait(.5)
  781. game.Players.LocalPlayer.Character.Humanoid.Health = 21e8
  782. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 32
  783.  
  784. bill = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
  785. bill.Size = UDim2.new(4, 0, 4.5, 0)
  786. bill.AlwaysOnTop = true
  787.  
  788. label = Instance.new("TextLabel", bill)
  789. label.Size = UDim2.new(2, 0, 1, 0)
  790. label.Position = UDim2.new(-0.5, 0, -0.5, 0)
  791. label.BackgroundTransparency = 1
  792. label.FontSize = "Size14"
  793. label.TextColor3 = Color3.new(170, 0, 0)
  794. label.TextStrokeColor3 = Color3.new(0 ,0 ,0)
  795. label.TextStrokeTransparency = 0
  796. label.Text = "Grim Reaper"
  797.  
  798. Stick = Instance.new("Tool", Bp)
  799. Stick.Name = "Scythe"
  800. Stick.GripPos = Vector3.new(0,0.1,0.7)
  801. Stick.GripForward = Vector3.new(0.1,-1,0)
  802. Stick.GripRight = Vector3.new(-0.5,0.01,0)
  803. Stick.GripUp = Vector3.new(0,0,1)
  804. Stick.CanBeDropped = false
  805.  
  806. Handle = Instance.new("Part", Stick)
  807. Handle.Name = "Handle"
  808. Handle.Size = Vector3.new(1, 1.2, 5)
  809.  
  810. sm = Instance.new("SpecialMesh",Handle)
  811. sm.MeshId = "http://www.roblox.com/asset/?id=28140935"
  812. sm.TextureId = "http://www.roblox.com/asset/?id=27739981"
  813.  
  814. a = Instance.new("Animation")
  815. a.Parent = game.Workspace
  816. a.Name = "Slash"
  817. a.AnimationId = "http://www.roblox.com/Asset?ID=28090109"
  818.  
  819. v = Instance.new("StringValue")
  820. v.Parent = game.Players.LocalPlayer.Backpack.Scythe
  821. v.Name = "name"
  822. v.Value = "Slash"
  823.  
  824. anime = Bp.Scythe.name.Value
  825.  
  826. s = Instance.new("Sound",Stick)
  827. s.Volume = 1
  828. s.SoundId = "http://www.roblox.com/Asset?ID=220834000"
  829.  
  830. q = Instance.new("Sound",Stick)
  831. q.Volume = 1
  832. q.SoundId = "http://www.roblox.com/Asset?ID=264486467"
  833.  
  834. f = Instance.new("Sound",Stick)
  835. f.Volume = 1
  836. f.SoundId = "http://www.roblox.com/Asset?ID=178038408"
  837.  
  838. z = Instance.new("Sound",Stick)
  839. z.Volume = 1
  840. z.SoundId = "http://www.roblox.com/Asset?ID=174048316"
  841.  
  842. t = Instance.new("Sound",Stick)
  843. t.Volume = 1
  844. t.SoundId = "http://www.roblox.com/Asset?ID=151710120"
  845.  
  846. gg = Instance.new("Sound",Stick)
  847. gg.Volume = 1
  848. gg.SoundId = "http://www.roblox.com/Asset?ID=142392721"
  849.  
  850. l = Instance.new("Sound",Stick)
  851. l.Volume = 1
  852. l.SoundId = "http://www.roblox.com/Asset?ID=158012252"
  853.  
  854. k = Instance.new("Sound",Stick)
  855. k.Volume = 1
  856. k.SoundId = "http://www.roblox.com/Asset?ID=148348789"
  857.  
  858. j = Instance.new("Sound",Stick)
  859. j.Volume = 1
  860. j.SoundId = "http://www.roblox.com/Asset?ID=148348855"
  861.  
  862. u = Instance.new("Sound",Stick)
  863. u.Volume = 1
  864. u.SoundId = "http://www.roblox.com/Asset?ID=151710118"
  865.  
  866. i = Instance.new("Sound",Stick)
  867. i.Volume = 1
  868. i.SoundId = "http://www.roblox.com/Asset?ID=271787865"
  869.  
  870. qq = Instance.new("Sound",Stick)
  871. qq.Volume = 1
  872. qq.SoundId = "http://www.roblox.com/Asset?ID=131076695"
  873.  
  874. function onChatted(msg)
  875. if msg == "death" then
  876. for i,v in pairs(game.Players:GetChildren()) do
  877. v.Character.Humanoid.Health = v.Character.Humanoid.Health-1000
  878. end
  879. end
  880. end
  881. game.Players.LocalPlayer.Chatted:connect(onChatted)
  882.  
  883. Bp.Scythe.Equipped:connect(function(m)
  884. f:Play()
  885. wait(4.5)
  886. z:Play()
  887. m.Button1Down:connect(function()
  888. hum = game.Players.LocalPlayer.Character.Humanoid
  889. anim_feet = hum:LoadAnimation(game.Workspace.Slash)
  890. current = anim_feet
  891. current:Play()
  892. s:Play()
  893. wait(.5)
  894. s:Play()
  895. wait(.5)
  896. s:Play()
  897. end)
  898. end)
  899.  
  900. Bp.Scythe.Unequipped:connect(function(m)
  901. f:Stop()
  902. z:Stop()
  903. o = 0
  904. end)
  905.  
  906. mouse = game.Players.LocalPlayer:GetMouse()
  907. function onKeyed(key)
  908. if key == "f" then
  909. left = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]
  910. for i = 1, 15 do
  911. left.C0 = left.C0 *CFrame.Angles(0,0,-0.1)
  912. wait(0.025)
  913. end
  914. de = Instance.new("Part", game.Players.LocalPlayer.Character["Left Arm"])
  915. de.Transparency = 1
  916. de.CanCollide = false
  917. de.CFrame = game.Players.LocalPlayer.Character["Left Arm"].CFrame*CFrame.new(0,-2,0)
  918. fe = Instance.new("Fire", de)
  919. fe.Color = Color3.new(0,0,0)
  920. fe.Heat = 5
  921. fe.SecondaryColor = Color3.new(90,90,90)
  922. fe.Size = 3
  923. be = Instance.new("BodyVelocity", de)
  924. be.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  925. be.velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*20
  926. for i = 1, 15 do
  927. left.C0 = left.C0 *CFrame.Angles(0,0,0.1)
  928. wait(0.025)
  929. end
  930. function onTouched(hit)
  931. local humanoid = hit.Parent:findFirstChild("Humanoid")
  932. if (humanoid ~=nil) then
  933. hit.Parent.Humanoid.Health = 0
  934. de:Destroy()
  935. end
  936. end
  937. de.Touched:connect(onTouched)
  938. wait(15)
  939. de:Destroy()
  940. end
  941. end
  942. mouse.KeyDown:connect(onKeyed)
  943.  
  944. mouse = game.Players.LocalPlayer:GetMouse()
  945. function onKeyed(key)
  946. if key == "g" then
  947. game.Players.LocalPlayer.Character["Right Arm"].Anchored = true
  948. game.Players.LocalPlayer.Character["Left Arm"].Anchored = true
  949. game.Players.LocalPlayer.Character["Right Leg"].Anchored = true
  950. game.Players.LocalPlayer.Character["Left Leg"].Anchored = true
  951. game.Players.LocalPlayer.Character.Torso.Anchored = true
  952. game.Players.LocalPlayer.Character.Head.Anchored = true
  953. for i = 1, 60 do
  954. Handle.CFrame = Handle.CFrame * CFrame.fromEulerAnglesXYZ(0,0.5,0)
  955. Handle.CFrame = Handle.CFrame * CFrame.new(0,-1.5,0)
  956. wait(0.02)
  957. end
  958. for i = 1, 60 do
  959. Handle.CFrame = Handle.CFrame * CFrame.fromEulerAnglesXYZ(0,-0.5,0)
  960. Handle.CFrame = Handle.CFrame * CFrame.new(0,1.5,0)
  961. wait(0.02)
  962. end
  963. wait(.5)
  964. game.Players.LocalPlayer.Character["Right Arm"].Anchored = false
  965. game.Players.LocalPlayer.Character["Left Arm"].Anchored = false
  966. game.Players.LocalPlayer.Character["Right Leg"].Anchored = false
  967. game.Players.LocalPlayer.Character["Left Leg"].Anchored = false
  968. game.Players.LocalPlayer.Character.Torso.Anchored = false
  969. game.Players.LocalPlayer.Character.Head.Anchored = false
  970. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 32
  971. end
  972. end
  973. mouse.KeyDown:connect(onKeyed)
  974.  
  975. local color1 = Color3.new(86, 86, 86)
  976. local color2 = Color3.new(255, 255, 255)
  977. local sequence = ColorSequence.new(color1,color2)
  978. function onTouch(part)
  979. local humanoid = part.Parent:findFirstChild("Humanoid")
  980. if (humanoid ~=nil) then
  981. if part.Parent.Name == game.Players.LocalPlayer.Name then
  982. print("Can't Kill Owner")
  983. else
  984. q:Play()
  985. z:Stop()
  986. pe = Instance.new("ParticleEmitter",part.Parent.Torso)
  987. pe.Texture = "http://www.roblox.com/asset/?id=251300537"
  988. pe.Acceleration = Vector3.new(0,-10,0)
  989. pe.Rate = 20
  990. pe.Color = sequence
  991. humanoid.Health = 0
  992. local g = part.Parent.Torso:findFirstChild("Ghost")
  993. if g then
  994. print('Ghost Already Exists')
  995. else
  996. o = o+1
  997. if o == 5 then
  998. l:Play()
  999. end
  1000. if o == 1 then
  1001. gg:Play()
  1002. end
  1003. if o == 3 then
  1004. t:Play()
  1005. end
  1006. if o == 10 then
  1007. k:Play()
  1008. end
  1009. if o == 15 then
  1010. j:Play()
  1011. end
  1012. if o == 2 then
  1013. u:Play()
  1014. end
  1015. if o == 8 then
  1016. i:Play()
  1017. end
  1018. if o == 13 then
  1019. qq:Play()
  1020. end
  1021. pe = Instance.new("Part",part.Parent.Torso)
  1022. pe.Position = part.Parent.Torso.Position
  1023. pe.Name = "Ghost"
  1024. pe.CanCollide = false
  1025. sp = Instance.new("SpecialMesh",pe)
  1026. sp.MeshId = "http://www.roblox.com/asset/?id=64445076"
  1027. sp.TextureId = "http://www.roblox.com/asset/?id=64445059"
  1028. bv = Instance.new("BodyVelocity",pe)
  1029. bv.velocity = Vector3.new(0,4,0)
  1030. wait(1)
  1031. pe:Destroy()
  1032. end
  1033. end
  1034. end
  1035. end
  1036. Bp.Scythe.Handle.Touched:connect(onTouch)
  1037.  
  1038. local mouse = game.Players.LocalPlayer:GetMouse()
  1039. lp = game.Players.LocalPlayer
  1040. lpc = game.Players.LocalPlayer.Character
  1041.  
  1042. local shock = Instance.new("Sound", lpc["Left Arm"])
  1043. shock.Volume = 1
  1044. shock.SoundId = "http://www.roblox.com/asset/?id=184211520"
  1045.  
  1046. fire = false
  1047. fired = 0
  1048.  
  1049. mouse.Button2Down:connect(function(click)
  1050. orb = Instance.new("Part", lpc)
  1051. orb.Name = "orb"
  1052. orb.Shape = "Ball"
  1053. orb.Size = Vector3.new(1.47, 1.47, 1.47)
  1054. orb.BrickColor = BrickColor.new("Really black")
  1055. orb.Transparency = 0.3
  1056.  
  1057. local w = Instance.new("Weld", orb)
  1058. w.Part0 = orb
  1059. w.Part1 = lpc["Left Arm"]
  1060. w.C0 = CFrame.new(0,1,0)
  1061.  
  1062. fire = true
  1063. while fire do
  1064. fired = fired+1
  1065.  
  1066. if fired == 30 then
  1067. fired = 0
  1068. for i,v in pairs(game.Workspace:GetChildren()) do
  1069. if v.Name == "strike" then
  1070. v:Destroy()
  1071. end
  1072. end
  1073. end
  1074.  
  1075. wait(0)
  1076. local ray = Ray.new(orb.CFrame.p, (mouse.Hit.p - orb.CFrame.p).unit * 300)
  1077. local part, position = workspace:FindPartOnRay(ray, lp.Character, false, true)
  1078.  
  1079. local strike = Instance.new("Part", workspace)
  1080. strike.BrickColor = BrickColor.new("Really black")
  1081. strike.FormFactor = "Custom"
  1082. strike.Transparency = 0.25
  1083. strike.Name = "strike"
  1084. strike.BottomSurface = "Smooth"
  1085. strike.TopSurface = "Smooth"
  1086. strike.Anchored = true
  1087. strike.Locked = true
  1088. strike.CanCollide = false
  1089.  
  1090. local distance = (orb.CFrame.p - position).magnitude
  1091. strike.Size = Vector3.new(0.3, 0.3, distance)
  1092. strike.CFrame = CFrame.new(orb.CFrame.p, position) * CFrame.new(0, 0, -distance / 2)
  1093. shock:Stop()
  1094. shock:Play()
  1095.  
  1096. game:GetService("Debris"):AddItem(strike, 0.1)
  1097.  
  1098. if part then
  1099. local humanoid = part.Parent:FindFirstChild("Humanoid")
  1100.  
  1101. if not humanoid then
  1102. humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  1103. end
  1104.  
  1105. if humanoid then
  1106. humanoid:TakeDamage(2)
  1107. end
  1108. end
  1109. end
  1110. end)
  1111.  
  1112. mouse.Button2Up:connect(function(click)
  1113. orb:Destroy()
  1114. fire = false
  1115. end) end,
  1116. PoisonMage = function() --Lets create a cool load-up animation.
  1117. Bp = game.Players.LocalPlayer.Backpack
  1118. jun = Bp.Parent
  1119.  
  1120. BlastRing = Instance.new("Part") --Creating the spike ball.
  1121. BlastRing.Parent = game.Lighting
  1122. BlastRing.Name = "BlastRing"
  1123. BlastRing.formFactor = "Symmetric"
  1124. BlastRing.Size = Vector3.new(0, 0, 0)
  1125. BlastRing.CanCollide = false
  1126. BlastRing.TopSurface = "Smooth"
  1127. BlastRing.BottomSurface = "Smooth"
  1128. BlastRing.BrickColor = BrickColor.new("Forest green")
  1129. BlastRing.Reflectance = 0
  1130. BlastRing.Anchored = true
  1131. Mesh2 = Instance.new("SpecialMesh")
  1132. Mesh2.Parent = BlastRing
  1133. Mesh2.MeshType = "FileMesh"
  1134. Mesh2.MeshId = "http://www.roblox.com/Asset/?id=9982590"
  1135. Mesh2.Scale = Vector3.new(1, 1, 1)
  1136.  
  1137. ExsplosionRing = Instance.new("Part") --Creating the ring.
  1138. ExsplosionRing.Parent = game.Lighting
  1139. ExsplosionRing.Name = "Explosion Ring"
  1140. ExsplosionRing.formFactor = "Symmetric"
  1141. ExsplosionRing.Size = Vector3.new(0, 0, 0)
  1142. ExsplosionRing.CanCollide = false
  1143. ExsplosionRing.TopSurface = "Smooth"
  1144. ExsplosionRing.BottomSurface = "Smooth"
  1145. ExsplosionRing.BrickColor = BrickColor.new("Black")
  1146. ExsplosionRing.Transparency = 0.3
  1147. ExsplosionRing.Reflectance = 0
  1148. ExsplosionRing.Anchored = true
  1149. Mesh3 = Instance.new("SpecialMesh")
  1150. Mesh3.Parent = ExsplosionRing
  1151. Mesh3.MeshType = "FileMesh"
  1152. Mesh3.MeshId = "http://www.roblox.com/Asset/?id=20329976"
  1153. Mesh3.Scale = Vector3.new(1, 1, 1)
  1154. Mesh3.Offset = Vector3.new(0,-2,0)
  1155.  
  1156.  
  1157. jun.Character.Humanoid.WalkSpeed = 0
  1158.  
  1159. blastring2 = BlastRing:clone() --Cloning spike ball out of lighting to surround player.
  1160. blastring2.Parent = jun.Character
  1161. blastring2.Position = jun.Character.Torso.Position
  1162. blastring2.BrickColor = BrickColor.new("Forest green")
  1163. blastring2.Transparency = 0.5
  1164. blastring2.Reflectance = 0
  1165.  
  1166. for i = 1, 50 do --Making the spike ball grow around the player.
  1167. wait(0.03)
  1168. blastring2.Mesh.Scale = blastring2.Mesh.Scale + Vector3.new(0.1, 0.1, 0.1)
  1169. blastring2.Transparency = blastring2.Transparency + 0.01
  1170. end
  1171.  
  1172. blastring3 = ExsplosionRing:clone() --Cloning the ring out of lighting to surround player.
  1173. blastring3.Parent = jun.Character
  1174. blastring3.Position = jun.Character.Torso.Position
  1175. blastring3.BrickColor = BrickColor.new("Black")
  1176. blastring3.Transparency = 0.3
  1177. blastring3.Reflectance = 0
  1178.  
  1179. for i = 1, 50 do --Resizing the rin to grow around the players legs.
  1180. wait(0.03)
  1181. blastring3.Mesh.Scale = blastring3.Mesh.Scale + Vector3.new(0.1, 0.1, 0.1)
  1182. blastring3.Transparency = blastring3.Transparency + 0.01
  1183. end
  1184. blastring2:remove()
  1185. blastring3:Destroy()
  1186.  
  1187. jun.Character.Humanoid.WalkSpeed = 22
  1188. --End of animation.
  1189.  
  1190. --Lets start the actual Mage Script.
  1191. local lp = game.Players.LocalPlayer
  1192.  
  1193. --Set The Players Health As If Wearing Armor.
  1194. lp.Character.Humanoid.MaxHealth = lp.Character.Humanoid.MaxHealth+200
  1195. wait(0.03)
  1196. lp.Character.Humanoid.Health = lp.Character.Humanoid.MaxHealth
  1197. --End Armor Control
  1198.  
  1199. --Create the Model to place the armor in.
  1200. m = Instance.new("Model",lp.Character)
  1201. m.Name = "Scapters Armor"
  1202.  
  1203. --Let's start creating the Left Arm.
  1204. la = Instance.new("Part",m)
  1205. la.Name = "Left Arm"
  1206. la.FormFactor = "Custom"
  1207. la.Material = "Concrete"
  1208. la.CanCollide = false
  1209. la.BrickColor = BrickColor.new("Forest green")
  1210. la.BottomSurface = "Smooth"
  1211. la.TopSurface = "Smooth"
  1212. la.Size = Vector3.new(1.05,1.05,1.05)
  1213. law = Instance.new("ManualWeld",la) --Weld the armor piece to the Left Arm.
  1214. law.Part0 = la
  1215. law.Part1 = lp.Character["Left Arm"]
  1216. law.C0 = CFrame.new(0,-0.5,0) --Positions the Left Arm.
  1217. --End Left Arm.
  1218.  
  1219. --Let's start creating the Right Arm.
  1220. ra = Instance.new("Part",m)
  1221. ra.Name = "Right Arm"
  1222. ra.FormFactor = "Custom"
  1223. ra.Material = "Concrete"
  1224. ra.CanCollide = false
  1225. ra.BrickColor = BrickColor.new("Forest green")
  1226. ra.BottomSurface = "Smooth"
  1227. ra.TopSurface = "Smooth"
  1228. ra.Size = Vector3.new(1.05,1.05,1.05)
  1229. raw = Instance.new("ManualWeld",ra) --Weld the armor piece to the Right Arm.
  1230. raw.Part0 = ra
  1231. raw.Part1 = lp.Character["Right Arm"]
  1232. raw.C0 = CFrame.new(0,-0.5,0) --Positions the Right Arm.
  1233. --End Right Arm.
  1234.  
  1235. --Let's start creating the Torso.
  1236. t = Instance.new("Part",m)
  1237. t.Name = "Torso"
  1238. t.FormFactor = "Custom"
  1239. t.CanCollide = false
  1240. t.Material = "Concrete"
  1241. t.BrickColor = BrickColor.new("Forest green")
  1242. t.BottomSurface = "Smooth"
  1243. t.TopSurface = "Smooth"
  1244. t.Size = Vector3.new(2.05,2.05,1.05)
  1245. tw = Instance.new("ManualWeld",t) --Weld the armor piece to the Torso.
  1246. tw.Part0 = t
  1247. tw.Part1 = lp.Character.Torso --Torso does not need to be positioned.
  1248. sg = Instance.new("SurfaceGui",t) --Creating a surfacegui to display health.(buggy)
  1249. f = Instance.new("Frame",sg)
  1250. f.BackgroundTransparency = 1
  1251. f.Size = UDim2.new(1,0,1,0)
  1252. tl = Instance.new("TextLabel",f)
  1253. tl.BackgroundTransparency = 1
  1254. tl.Size = UDim2.new(1,0,1,0)
  1255. tl.Font = "SourceSansBold"
  1256. tl.FontSize = "Size96"
  1257. tl.TextColor3 = Color3.new(0,0,0)
  1258. tl.TextStrokeColor3 = Color3.new(0,0,0)
  1259. tl.TextStrokeTransparency = 0
  1260. --End Torso.
  1261.  
  1262. --Let's start creating the Left Leg.
  1263. ll = Instance.new("Part",m)
  1264. ll.Name = "Left Leg"
  1265. ll.FormFactor = "Custom"
  1266. ll.Material = "Concrete"
  1267. ll.CanCollide = false
  1268. ll.BrickColor = BrickColor.new("Forest green")
  1269. ll.BottomSurface = "Smooth"
  1270. ll.TopSurface = "Smooth"
  1271. ll.Size = Vector3.new(1.05,1.65,1.05)
  1272. llw = Instance.new("ManualWeld",ll) --Weld the armor piece to the Left Leg.
  1273. llw.Part0 = ll
  1274. llw.Part1 = lp.Character["Left Leg"]
  1275. llw.C0 = CFrame.new(0,-0.2,0) --Positions the Left Leg.
  1276. --End Left Leg.
  1277.  
  1278. --Let's start creating the Right Leg.
  1279. rl = Instance.new("Part",m)
  1280. rl.Name = "Right Leg"
  1281. rl.FormFactor = "Custom"
  1282. rl.Material = "Concrete"
  1283. rl.CanCollide = false
  1284. rl.BrickColor = BrickColor.new("Forest green")
  1285. rl.BottomSurface = "Smooth"
  1286. rl.TopSurface = "Smooth"
  1287. rl.Size = Vector3.new(1.05,1.65,1.05)
  1288. rlw = Instance.new("ManualWeld",rl) --Weld the armor piece to the Right Leg.
  1289. rlw.Part0 = rl
  1290. rlw.Part1 = lp.Character["Right Leg"]
  1291. rlw.C0 = CFrame.new(0,-0.2,0) --Positions the Right Leg.
  1292. --End Right Leg.
  1293.  
  1294. --Let's make it so elasticity and friction are set to a high value to prevent stutters.
  1295. for i,v in ipairs(m:GetChildren()) do
  1296. v.Friction = 2000
  1297. v.Elasticity = 2000
  1298. end
  1299. --End stutter provention.
  1300.  
  1301. local color1 = Color3.new(0, 85, 0)
  1302. local color2 = Color3.new(0,0,0)
  1303. local sequence = ColorSequence.new(color1,color2)
  1304.  
  1305. --Let's create the staff.
  1306. t = Instance.new("Tool", lp.Backpack) --Creating the tool for the staff to be put into.
  1307. t.Name = "Scapters Staff"
  1308. t.GripPos = Vector3.new(0,0.65,0)
  1309. t.ToolTip = "Whome-ever wields this staff is a true legend."
  1310. t.CanBeDropped = false
  1311. s = Instance.new("Part",t) --This will be the base part of the staff(the part the player holds).
  1312. s.Name = "Handle"
  1313. s.BrickColor = BrickColor.new("Burnt Sienna")
  1314. s.FormFactor = "Custom"
  1315. s.Size = Vector3.new(0.32,5.64,0.28)
  1316. s.Material = "Wood"
  1317. b = Instance.new("Part",t) --Lets create the tip of the staff.
  1318. b.Material = "Concrete"
  1319. b.BrickColor = BrickColor.new("Forest green")
  1320. b.Shape = "Ball"
  1321. b.Size = Vector3.new(1,1,1)
  1322. b.TopSurface = "Smooth"
  1323. b.BottomSurface = "Smooth"
  1324. bw = Instance.new("ManualWeld",rl) --Weld the tip to the staff.
  1325. bw.Part0 = s
  1326. bw.Part1 = b
  1327. bw.C0 = CFrame.new(0,2.5,0) --Positions the tip.
  1328. pe = Instance.new("ParticleEmitter",b) -- Lets create the fancy looking particles
  1329. pe.Color = sequence
  1330. pe.Texture = "http://www.roblox.com/asset/?id=242292318"
  1331. pe.LightEmission = 1
  1332. pe.Lifetime = NumberRange.new(1,1)
  1333. pe.Rotation = NumberRange.new(360,360)
  1334. pe.RotSpeed = NumberRange.new(360,360)
  1335. pe.Speed = NumberRange.new(1,1)
  1336. pe.LockedToPart = true
  1337. sk = Instance.new("Part",t)--Let's create the skull
  1338. sk.BrickColor = BrickColor.new("Forest green")
  1339. sk.Material = "Concrete"
  1340. sm = Instance.new("SpecialMesh",sk)
  1341. sm.MeshId = "http://www.roblox.com/asset/?id=6552202"
  1342. sm.Scale = Vector3.new(3.2,3.2,3.2)
  1343. skw = Instance.new("ManualWeld",rl) --Weld the skull to the staff.
  1344. skw.Part0 = s
  1345. skw.Part1 = sk
  1346. skw.C0 = CFrame.new(0,2.5,0) --Positions the skull.
  1347. game.Players.LocalPlayer.Character.Humanoid:EquipTool(t) --Auto-Equip the staff.
  1348. --End staff creation.
  1349.  
  1350. --Backup
  1351. t.Equipped:connect(function()
  1352. local bww = Instance.new("ManualWeld",rl) --Weld the tip to the staff.
  1353. bww.Part0 = s
  1354. bww.Part1 = b
  1355. bww.C0 = CFrame.new(0,2.5,0) --Positions the tip.
  1356. local skww = Instance.new("ManualWeld",rl) --Weld the skull to the staff.
  1357. skww.Part0 = s
  1358. skww.Part1 = sk
  1359. skww.C0 = CFrame.new(0,2.5,0) --Positions the skull.
  1360. end)
  1361.  
  1362. local mouse = game.Players.LocalPlayer:GetMouse()
  1363.  
  1364. --Lighting Attack
  1365. mouse.Button1Down:connect(function()
  1366. local hit = mouse.Target -- This is where the lightning will go.
  1367.  
  1368. end)
  1369.  
  1370. --Poison Attack
  1371. mouse.Button2Down:connect(function() --Creating the event to detect where the ball will be placed.
  1372. local hit = mouse.Target --This is where it gets the players position.
  1373. if hit.Parent:FindFirstChild("Torso") then
  1374. local h = Instance.new("Part", game.Workspace)
  1375. h.Shape = "Ball"
  1376. h.Size = Vector3.new(1,1,1)
  1377. h.BrickColor = BrickColor.new("Forest green")
  1378. h.Material = "Concrete"
  1379. h.Anchored = true
  1380. h.CanCollide = false
  1381. pe = Instance.new("ParticleEmitter",h) --Make the ball look fancy.
  1382. pe.Color = sequence
  1383. pe.Texture = "http://www.roblox.com/asset/?id=242292318"
  1384. pe.LightEmission = 1
  1385. pe.Lifetime = NumberRange.new(1,1)
  1386. pe.Rotation = NumberRange.new(360,360)
  1387. pe.RotSpeed = NumberRange.new(360,360)
  1388. pe.Speed = NumberRange.new(1,1)
  1389. h.CFrame = hit.Parent.HumanoidRootPart.CFrame --Changes the balls position to the hit players HumanoidRootPart.
  1390. hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health-25
  1391. wait(1)
  1392. h:Destroy()
  1393. for i = 1, 8 do
  1394. hit.Parent.Head.BrickColor = BrickColor.new("Sea green") --Set player to poison colors.
  1395. hit.Parent["Left Arm"].BrickColor = BrickColor.new("Sea green")
  1396. hit.Parent["Right Arm"].BrickColor = BrickColor.new("Sea green")
  1397. hit.Parent["Left Leg"].BrickColor = BrickColor.new("Sea green")
  1398. hit.Parent["Right Leg"].BrickColor = BrickColor.new("Sea green")
  1399. hit.Parent.Torso.BrickColor = BrickColor.new("Sea green")
  1400. hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health-5
  1401. lp.Character.Humanoid.Health = lp.Character.Humanoid.Health+5 --Life steal.
  1402. pe = Instance.new("ParticleEmitter",hit.Parent.Torso) --Make the poison effect look fancy.
  1403. pe.Color = sequence
  1404. pe.Texture = "http://www.roblox.com/asset/?id=242292318"
  1405. pe.LightEmission = 1
  1406. pe.Lifetime = NumberRange.new(1,1)
  1407. pe.Rotation = NumberRange.new(360,360)
  1408. pe.RotSpeed = NumberRange.new(360,360)
  1409. pe.Speed = NumberRange.new(1,1)
  1410. wait(0.8)
  1411. pe:Destroy()
  1412. hit.Parent.Head.BrickColor = hit.Parent["Body Colors"].HeadColor --Set player colors back to normal.
  1413. hit.Parent["Left Arm"].BrickColor = hit.Parent["Body Colors"].LeftArmColor
  1414. hit.Parent["Right Arm"].BrickColor = hit.Parent["Body Colors"].RightArmColor
  1415. hit.Parent["Left Leg"].BrickColor = hit.Parent["Body Colors"].LeftLegColor
  1416. hit.Parent["Right Leg"].BrickColor = hit.Parent["Body Colors"].RightLegColor
  1417. hit.Parent.Torso.BrickColor = hit.Parent["Body Colors"].TorsoColor
  1418. wait(0.8)
  1419. end
  1420. end
  1421. end)
  1422.  
  1423. --Let's create a forcefield event.
  1424. local color1 = Color3.new(0, 170, 0)
  1425. local color2 = Color3.new(0, 170, 0)
  1426. local sequence = ColorSequence.new(color1,color2)
  1427. mouse1 = game.Players.LocalPlayer:GetMouse()
  1428.  
  1429. mouse1.KeyDown:connect(function(key)
  1430. if key == "f" then
  1431. pe = Instance.new("ParticleEmitter",m.Torso)
  1432. pe.Rate = 1
  1433. wait(0.03)
  1434. pe.Rate = 0
  1435. pe.LightEmission = 0.5
  1436. pe.Size = NumberSequence.new(5,5)
  1437. pe.Texture = "http://www.roblox.com/asset/?id=147741899"
  1438. pe.Color = sequence
  1439. pe.Lifetime = NumberRange.new(100e100,100e100)
  1440. pe.Rotation = NumberRange.new(360,360)
  1441. pe.RotSpeed = NumberRange.new(40,40)
  1442. pe.LockedToPart = true
  1443. pe.Speed = NumberRange.new(0,0)
  1444. pe:Emit(1)
  1445. lp.Character.Humanoid.MaxHealth = math.huge
  1446. wait(0.03)
  1447. lp.Character.Humanoid.Health = math.huge
  1448. wait(25)
  1449. lp.Character.Humanoid.MaxHealth = 300
  1450. wait(0.03)
  1451. lp.Character.Humanoid.Health = 300
  1452. pe:Destroy()
  1453. end
  1454. end)
  1455. --End forcefield event.
  1456.  
  1457. while wait(0) do --Create the loop to constantly make the textlabel update with health.(buggy)
  1458. tl.Text = "Heath: "..math.floor(lp.Character.Humanoid.Health).."/"..lp.Character.Humanoid.MaxHealth
  1459. end end,
  1460. Spiral = function() local lp = game.Players.LocalPlayer
  1461.  
  1462. local mouse = lp:GetMouse()
  1463.  
  1464. local Debris = Instance.new("Folder", game.Workspace)
  1465.  
  1466. Debris.Name = "Debris"
  1467.  
  1468. local RotatePart = Instance.new("Part", Debris)
  1469.  
  1470. RotatePart.Size = Vector3.new(1,1,1)
  1471.  
  1472. RotatePart.BottomSurface = "Smooth"
  1473.  
  1474. RotatePart.TopSurface = "Smooth"
  1475.  
  1476. RotatePart.Anchored = true
  1477.  
  1478. RotatePart.CanCollide = false
  1479.  
  1480. RotatePart.BrickColor = game.Players.LocalPlayer.Character.Torso.BrickColor
  1481.  
  1482.  
  1483.  
  1484. local RP = RotatePart
  1485.  
  1486.  
  1487.  
  1488. local Rot = 0
  1489.  
  1490. game:GetService("RunService").Stepped:connect(function()
  1491.  
  1492. local PointPart = game.Players.LocalPlayer.Character.Torso
  1493.  
  1494. if PointPart then
  1495.  
  1496. Rot = Rot+1
  1497.  
  1498.  
  1499.  
  1500. RP.CFrame = PointPart.CFrame*CFrame.Angles(math.rad(50,150),math.rad(Rot),math.rad(Rot))*CFrame.new(0,0,3)
  1501.  
  1502.  
  1503.  
  1504. local C = RP:Clone()
  1505.  
  1506. C.Parent = Debris
  1507.  
  1508. C.Transparency = 0.9
  1509.  
  1510. wait(3)
  1511.  
  1512. C:Destroy()
  1513.  
  1514. end
  1515.  
  1516. end)
  1517.  
  1518.  
  1519.  
  1520. mouse.Button1Down:connect(function()
  1521.  
  1522. local ray = Ray.new(RotatePart.CFrame.p, (mouse.Hit.p - RotatePart.CFrame.p).unit * 300)
  1523.  
  1524. local part, position = workspace:FindPartOnRay(ray, lp.Character, false, true)
  1525.  
  1526.  
  1527.  
  1528. local strike = Instance.new("Part", Debris)
  1529.  
  1530. strike.BrickColor = RotatePart.BrickColor
  1531.  
  1532. strike.FormFactor = "Custom"
  1533.  
  1534. strike.Transparency = 0.25
  1535.  
  1536. strike.Name = "strike"
  1537.  
  1538. strike.BottomSurface = "Smooth"
  1539.  
  1540. strike.TopSurface = "Smooth"
  1541.  
  1542. strike.Anchored = true
  1543.  
  1544. strike.Locked = true
  1545.  
  1546. strike.CanCollide = false
  1547.  
  1548.  
  1549.  
  1550. local distance = (RotatePart.CFrame.p - position).magnitude
  1551.  
  1552. strike.Size = Vector3.new(0.3, 0.3, distance)
  1553.  
  1554. strike.CFrame = CFrame.new(RotatePart.CFrame.p, position) * CFrame.new(0, 0, -distance / 2)
  1555.  
  1556. if part then
  1557.  
  1558. local humanoid = part.Parent:FindFirstChild("Humanoid")
  1559.  
  1560.  
  1561.  
  1562. if not humanoid then
  1563.  
  1564. humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  1565.  
  1566. end
  1567.  
  1568.  
  1569.  
  1570. if humanoid then
  1571.  
  1572. humanoid:TakeDamage(15)
  1573.  
  1574. end
  1575.  
  1576. end
  1577.  
  1578. wait(0.08)
  1579.  
  1580. strike:Destroy()
  1581.  
  1582. end) end,
  1583. Igor = function() local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1584. s.Part0 = game.Players.LocalPlayer.Character.Torso
  1585. s.Part1 = game.Players.LocalPlayer.Character.Head
  1586. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1587. s.Part0 = game.Players.LocalPlayer.Character.Torso
  1588. s.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  1589. s.C0 = CFrame.new(1.5,1.5,0)
  1590. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1591. s.Part0 = game.Players.LocalPlayer.Character.Torso
  1592. s.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  1593. s.C0 = CFrame.new(-1.5,1.5,0)
  1594. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1595. s.Part0 = game.Players.LocalPlayer.Character.Torso
  1596. s.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  1597. s.C0 = CFrame.new(-1.5,-1.5,0)
  1598. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1599. s.Part0 = game.Players.LocalPlayer.Character.Torso
  1600. s.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  1601. s.C0 = CFrame.new(1.5,-1.5,0) end,
  1602. GameDataBaseMenu = function() game:GetObjects("rbxassetid://339383300")[1].Parent = game.Players.LocalPlayer.PlayerGui end,
  1603. ScaptersModMenu = function() game:GetObjects("rbxassetid://277919405")[1].Parent = game.Players.LocalPlayer.PlayerGui end,
  1604. InserTool = function() game:GetService("InsertService").AllowInsertFreeModels = true game:GetObjects("rbxassetid://278292623")[1].Parent = game.Players.LocalPlayer.Backpack end,
  1605. HeilHitler = function() Player = game.Players.LocalPlayer
  1606. local t1 = Player.Character.Torso
  1607. local rs1 = t1["Right Shoulder"]
  1608. t1.Parent.Animate.Disabled = true
  1609. game.Chat:Chat(t1.Parent.Head, "Sieg Heil! Heil H§i§t§l§e§r!! Heil thy Fuhrer!", "Red")
  1610. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.2) --Right Shoulder
  1611. wait(0.043)
  1612. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.3) --Right Shoulder
  1613. wait(0.043)
  1614. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.4) --Right Shoulder
  1615. wait(0.043)
  1616. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.5) --Right Shoulder
  1617. wait(0.043)
  1618. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.6) --Right Shoulder
  1619. wait(0.043)
  1620. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.7) --Right Shoulder
  1621. wait(0.043)
  1622. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.8) --Right Shoulder
  1623. wait(0.043)
  1624. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-0.9) --Right Shoulder
  1625. wait(0.043)
  1626. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) * CFrame.Angles(-0.1,-0.7,-1) --Right Shoulder
  1627. wait(0.043)
  1628. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.5,-0.4) * CFrame.Angles(-0.5,-0.7,-1.3) --Right Shoulder
  1629. wait(0.043)
  1630. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.4,-0.4) * CFrame.Angles(-0.5,-0.7,-1.4) --Right Shoulder
  1631. wait(0.043)
  1632. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.3,-0.4) * CFrame.Angles(-0.5,-0.7,-1.5) --Right Shoulder
  1633. wait(0.043)
  1634. rs1.C1 = CFrame.new(-0.55,0.6, -0) * CFrame.Angles(0,1.2,-0.4) * CFrame.Angles(-0.5,-0.7,-1.6) --Right Shoulder
  1635. wait(0.043)
  1636. rs1.C1 = CFrame.new(-0.55,0.6, -0) * CFrame.Angles(0,1.1,-0.4) * CFrame.Angles(-0.5,-0.7,-1.7) --Right Shoulder
  1637. wait(0.043)
  1638. rs1.C1 = CFrame.new(-0.55,0.6, -0) * CFrame.Angles(0,1.0,-0.4) * CFrame.Angles(-0.5,-0.7,-1.8) --Right Shoulder
  1639. wait(0.043)
  1640. rs1.C1 = CFrame.new(-0.55,0.6, -0) * CFrame.Angles(0,1.1,-0.4) * CFrame.Angles(-0.5,-0.7,-1.8) --Right Shoulder
  1641. wait(0.043)
  1642. rs1.C1 = CFrame.new(-0.55,0.6, -0) * CFrame.Angles(0,1.2,-0.4) * CFrame.Angles(-0.5,-0.7,-1.7) --Right Shoulder
  1643. wait(0.043)
  1644. rs1.C1 = CFrame.new(-0.55,0.6, -0) * CFrame.Angles(0,1.3,-0.4) * CFrame.Angles(-0.5,-0.7,-1.6) --Right Shoulder
  1645. wait(0.043)
  1646. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.4,-0.4) * CFrame.Angles(-0.5,-0.7,-1.5) --Right Shoulder
  1647. wait(0.043)
  1648. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.5,-0.4) * CFrame.Angles(-0.5,-0.7,-1.4) --Right Shoulder
  1649. wait(0.043)
  1650. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0.4) * CFrame.Angles(-0.5,-0.7,-1.3) --Right Shoulder
  1651. wait(0.043)
  1652. rs1.C1 = CFrame.new(-0.55,0.88, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-1.3) --Right Shoulder
  1653. wait(0.043)
  1654. rs1.C1 = CFrame.new(-0.55,0.99, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-1.4) --Right Shoulder
  1655. wait(0.043)
  1656. rs1.C1 = CFrame.new(-0.55,1.09, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-1.5) --Right Shoulder
  1657. wait(0.043)
  1658. rs1.C1 = CFrame.new(-0.55,1.19, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-1.6) --Right Shoulder
  1659. wait(0.043)
  1660. rs1.C1 = CFrame.new(-0.55,1.29, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-1.7) --Right Shoulder
  1661. wait(0.043)
  1662. rs1.C1 = CFrame.new(-0.55,1.39, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-1.8) --Right Shoulder
  1663. wait(0.043)
  1664. rs1.C1 = CFrame.new(-0.55,1.49, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-1.9) --Right Shoulder
  1665. wait(0.043)
  1666. rs1.C1 = CFrame.new(-0.55,1.59, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-2) --Right Shoulder
  1667. wait(0.043)
  1668. rs1.C1 = CFrame.new(-0.55,1.69, -0) * CFrame.Angles(0.5,1.6,-0.4) * CFrame.Angles(-0,-1.4,-2.1) --Right Shoulder
  1669. wait(2)
  1670. rs1.C1 = CFrame.new(-0.48,0.48, -0) * CFrame.Angles(0,1.6,-0) --Right Shoulder
  1671. wait(0.1)
  1672. t1.Parent.Animate.Disabled = false end,
  1673. StealGame = function() --[[ / Made by 9/11 \
  1674.  
  1675. Credits to:
  1676. GeneHackman
  1677. ScapterDaFapper
  1678. --]]
  1679.  
  1680. src=""
  1681. MadeBy="9/11"
  1682. newline=[[
  1683.  
  1684. ]]
  1685.  
  1686. function c(d)
  1687. src=src..newline..d
  1688. end
  1689.  
  1690. function copy(ffa)
  1691. for i,v in pairs(ffa:GetChildren()) do
  1692.  
  1693. if v:IsA'Part' or v:IsA'WedgePart' or v:IsA'SpawnLocation' or v:IsA'UnionOperation' or v:IsA'Seat' or v:IsA'VehicleSeat' or v:IsA'TrussPart' or v:IsA'Union' then
  1694. PartID="a"..tostring(math.random(10000,100000))
  1695. if v.className~="UnionOperation" then
  1696. c(PartID.."=Instance.new('Part', Workspace)")
  1697. else
  1698. c(PartID.."=Instance.new('Part', Workspace)")
  1699. end
  1700. if v:IsA'Part' then
  1701. c(PartID..".Shape="..tostring(v.Shape))
  1702. end
  1703. if v:IsA'Part' or v:IsA'Seat' or v:IsA'VehicleSeat' then
  1704. c(PartID..".FormFactor="..tostring(v.FormFactor))
  1705. end
  1706. c(PartID..".Transparency="..tostring(v.Transparency))
  1707. c(PartID..".BrickColor=BrickColor.new('"..tostring(v.BrickColor).."')")
  1708. c(PartID..".Reflectance="..tostring(v.Reflectance))
  1709. c(PartID..".Size=Vector3.new("..tostring(v.Size)..")")
  1710. c(PartID..".CFrame=CFrame.new("..tostring(v.CFrame)..")")
  1711. c(PartID..".Material="..tostring(v.Material))
  1712. c(PartID..".Anchored="..tostring(v.Anchored))
  1713. c(PartID..".CanCollide="..tostring(v.CanCollide))
  1714. c(PartID..".Name='"..tostring(v.Name).."'")
  1715. c(PartID..".BackSurface="..tostring(v.BackSurface))
  1716. c(PartID..".TopSurface="..tostring(v.TopSurface))
  1717. c(PartID..".BottomSurface="..tostring(v.BottomSurface))
  1718. c(PartID..".FrontSurface="..tostring(v.FrontSurface))
  1719. c(PartID..".LeftSurface="..tostring(v.LeftSurface))
  1720. c(PartID..".RightSurface="..tostring(v.RightSurface))
  1721. if AllowPartsToGetLocked==true then
  1722. c(PartID..".Locked="..tostring(v.Locked))
  1723. end
  1724. for g,h in pairs(v:GetChildren()) do
  1725. if h:IsA'SpecialMesh' then
  1726. c("MeshID=Instance.new('"..h.className.."', "..PartID..")")
  1727. c("MeshID.Scale=Vector3.new("..tostring(h.Scale)..")")
  1728. c("MeshID.Offset=Vector3.new("..tostring(h.Offset)..")")
  1729. c("MeshID.MeshType="..tostring(h.MeshType))
  1730. c("MeshID.MeshId='"..tostring(h.MeshId).."'")
  1731. c("MeshID.TextureId='"..tostring(h.TextureId).."'")
  1732. elseif h:IsA'CylinderMesh' then
  1733. c("MeshID=Instance.new('"..h.className.."', "..PartID..")")
  1734. elseif h:IsA'Decal' then
  1735. c("DecID=Instance.new('"..h.className.."', "..PartID..")")
  1736. c("DecID.Transparency="..tostring(h.Transparency))
  1737. c("DecID.Texture='"..tostring(h.Texture).."'")
  1738. c("DecID.Face="..tostring(h.Face))
  1739. elseif h:IsA'PointLight' then
  1740. c("plID=Instance.new('"..h.className.."', "..PartID..")")
  1741. c("plID.Range="..tostring(h.Range))
  1742. c("plID.Color=Color3.new("..tostring(h.Color)..")")
  1743. c("plID.Enabled="..tostring(h.Enabled))
  1744. c("plID.Brightness="..tostring(h.Brightness))
  1745. c("plID.Shadows="..tostring(h.Shadows))
  1746. elseif h:IsA'SpotLight' then
  1747. c("slID=Instance.new('"..h.className.."', "..PartID..")")
  1748. c("slID.Range="..tostring(h.Range))
  1749. c("slID.Angle="..tostring(h.Angle))
  1750. c("slID.Color=Color3.new("..tostring(h.Color)..")")
  1751. c("slID.Enabled="..tostring(h.Enabled))
  1752. c("slID.Brightness="..tostring(h.Brightness))
  1753. c("slID.Shadows="..tostring(h.Shadows))
  1754. c("slID.Face="..tostring(h.Face))
  1755. end
  1756. end
  1757. end
  1758. ChangeLightingProperties = true
  1759. end
  1760. if MadeBy==string.reverse("11/9") then
  1761. if ChangeLightingProperties==true then
  1762. c("game.Lighting.TimeOfDay='"..tostring(game.Lighting.TimeOfDay).."'")
  1763. c("game.Lighting.Brightness="..tostring(game.Lighting.Brightness))
  1764. c("game.Lighting.Outlines="..tostring(game.Lighting.Outlines))
  1765. c("game.Lighting.FogEnd="..tostring(game.Lighting.FogEnd))
  1766. c("game.Lighting.FogStart="..tostring(game.Lighting.FogStart))
  1767. c("game.Lighting.FogColor=Color3.new("..tostring(game.Lighting.FogColor)..")")
  1768. c("game.Lighting.Ambient=Color3.new("..tostring(game.Lighting.Ambient)..")")
  1769. end
  1770. print("Done")
  1771. CopyString(src)
  1772. else
  1773. print("This script was made by 9/11, this guy just copyed it eww eww.")
  1774. end
  1775. end
  1776.  
  1777. function ungroupws()
  1778. local function rc(inst)
  1779. for _, v in pairs(inst:GetChildren()) do
  1780. if v:IsA("Model") then
  1781. if v.Archivable then
  1782. for _, x in pairs(v:GetChildren()) do
  1783. x.Parent = workspace;
  1784. rc(x)
  1785. end
  1786. v:Destroy() -- cleanup
  1787. end
  1788. end
  1789. end
  1790. end
  1791. rc(Workspace)
  1792. end
  1793. print'Getting ready.'
  1794. for i=1,100 do
  1795. ungroupws()
  1796. wait(0.2)
  1797. end
  1798.  
  1799. print'Starting copying in 10 seconds.'
  1800. wait(10)
  1801. print('Copying map. Please allow upto 15 minutes for this proccess, your ROBLOXPlayer will freeze but wait - .'..string.reverse("11/9"))
  1802. copy(game.Workspace)
  1803. --io.open("C:/Copyed/"..game.PlaceId..".txt", "w"):write(src)
  1804. end,
  1805. FireBall = function() local MyMouse = game.Players.LocalPlayer:GetMouse()
  1806. local anim = Instance.new("Animation", game.Workspace)
  1807. anim.Name = "ThrowAnim"
  1808. anim.AnimationId = "http://www.roblox.com/asset/?id=338949936"
  1809. MyMouse.Button1Down:connect(function(mouse)
  1810. if game.Workspace:FindFirstChild("FireBall") then
  1811. game.Workspace.FireBall:Destroy()
  1812. end
  1813. local p = Instance.new("Part", game.Workspace)
  1814. local charging = Instance.new("Sound", p)
  1815. charging.SoundId = "http://www.roblox.com/asset/?id=244578827"
  1816. charging.Volume = 1
  1817. charging:Play()
  1818. p.Shape = "Ball"
  1819. p.Size = Vector3.new(1,1,1)
  1820. p.TopSurface = "Smooth"
  1821. p.BottomSurface = "Smooth"
  1822. p.Name = "FireBall"
  1823. p.BrickColor = BrickColor.new("Institutional white")
  1824. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1825. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1826. s.Part1 = p
  1827. s.C0 = CFrame.new(0,-1.5,0)
  1828. local hum = game.Players.LocalPlayer.Character.Humanoid
  1829. local anim_feet = hum:LoadAnimation(anim)
  1830. local current = anim_feet
  1831. current:Play()
  1832. current.KeyframeReached:connect(function(keyframeName)
  1833. if keyframeName == "Charge" then
  1834. p.Size = Vector3.new(1.1,1.1,1.1)
  1835. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1836. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1837. s.Part1 = p
  1838. s.C0 = CFrame.new(0,-1.5,0)
  1839. wait(0.03)
  1840. p.Size = Vector3.new(1.2,1.2,1.2)
  1841. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1842. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1843. s.Part1 = p
  1844. s.C0 = CFrame.new(0,-1.5,0)
  1845. wait(0.03)
  1846. p.Size = Vector3.new(1.3,1.3,1.3)
  1847. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1848. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1849. s.Part1 = p
  1850. s.C0 = CFrame.new(0,-1.5,0)
  1851. wait(0.03)
  1852. p.Size = Vector3.new(1.4,1.4,1.4)
  1853. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1854. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1855. s.Part1 = p
  1856. s.C0 = CFrame.new(0,-1.5,0)
  1857. wait(0.03)
  1858. p.Size = Vector3.new(1.5,1.5,1.5)
  1859. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1860. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1861. s.Part1 = p
  1862. s.C0 = CFrame.new(0,-1.5,0)
  1863. p.Size = Vector3.new(1.6,1.6,1.6)
  1864. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1865. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1866. s.Part1 = p
  1867. s.C0 = CFrame.new(0,-1.5,0)
  1868. wait(0.03)
  1869. p.Size = Vector3.new(1.7,1.7,1.7)
  1870. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1871. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1872. s.Part1 = p
  1873. s.C0 = CFrame.new(0,-1.5,0)
  1874. wait(0.03)
  1875. p.Size = Vector3.new(1.8,1.8,1.8)
  1876. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1877. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1878. s.Part1 = p
  1879. s.C0 = CFrame.new(0,-1.5,0)
  1880. wait(0.03)
  1881. p.Size = Vector3.new(1.9,1.9,1.9)
  1882. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1883. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1884. s.Part1 = p
  1885. s.C0 = CFrame.new(0,-1.5,0)
  1886. wait(0.03)
  1887. p.Size = Vector3.new(2,2,2)
  1888. local s = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1889. s.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1890. s.Part1 = p
  1891. s.C0 = CFrame.new(0,-1.5,0)
  1892. wait(0.03)
  1893. local f = Instance.new("Fire", p)
  1894. f.Color = Color3.new(0, 0, 255)
  1895. f.SecondaryColor = Color3.new(0, 85, 255)
  1896. end
  1897. end)
  1898. current.KeyframeReached:connect(function(keyframeName)
  1899. if keyframeName == "Throw" then
  1900. local fire = Instance.new("Sound", p)
  1901. fire.SoundId = "http://www.roblox.com/asset/?id=176251709"
  1902. fire.Volume = 1
  1903. fire:Play()
  1904. charging:Stop()
  1905. p:Clone().Parent = game.Workspace
  1906. p:Destroy()
  1907. local y = Instance.new("BodyVelocity", game.Workspace.FireBall)
  1908. y.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1909. y.velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*80
  1910. wait(0.2)
  1911. game.Workspace.FireBall.Touched:connect(function(hit)
  1912. if hit.Parent:FindFirstChild("Humanoid") then
  1913. hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - math.random(15,35)
  1914. game.Workspace.FireBall:Destroy()
  1915. else
  1916. game.Workspace.FireBall:Destroy()
  1917. end
  1918. end)
  1919. end
  1920. end)
  1921. end) end,
  1922. ApocGui = function() loadstring(game:GetObjects("rbxassetid://348653206")[1].Source)() end,
  1923. PhantomX = function() loadstring(game:GetObjects("rbxassetid://298918246")[1].Source)() end,
  1924. ScriptingTab = function() Frame.Visible = false PlayerList.Visible = false ScriptingFrame.Visible = true end}
  1925.  
  1926. local s = 2
  1927. local spreviousvalue = 1
  1928. for i,v in pairs(ScriptTable) do
  1929. if Frame:FindFirstChild('1') then
  1930. local q = Instance.new("TextButton", Frame)
  1931. q.Size = UDim2.new(1,0,0,30)
  1932. q.BackgroundTransparency = 1
  1933. q.ZIndex = 2
  1934. q.TextColor3 = Color3.new(255,255,255)
  1935. q.Name = s
  1936. q.Text = i
  1937. q.Font = "SourceSansBold"
  1938. q.FontSize = "Size32"
  1939. q.Position = Frame[spreviousvalue].Position+UDim2.new(0,0,0,38)
  1940. spreviousvalue = s
  1941. s = s+1
  1942. end
  1943. end
  1944.  
  1945. local PlayerTabs = {God = function() game.Players[PlayerFrame.GodBox.Text].Character.Humanoid.MaxHealth = math.huge end,
  1946. Teleport_Player_Me = function() game.Players[PlayerFrame.Teleport_Player_MeBox.Text].Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame end,
  1947. Kill = function() game.Players[PlayerFrame.KillBox.Text].Character.Humanoid.Health = 0 end,
  1948. Kick = function() game.Players[PlayerFrame.Kick.Text]:Destroy() end,
  1949. ForceField = function() local ff = Instance.new("ForceField", game.Players[PlayerFrame.ForceFieldBox.Text].Character) end,
  1950. Teleport_To_Player = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerFrame.Teleport_Player_MeBox.Text].Character.HumanoidRootPart.CFrame end,
  1951. UnForceField = function() game.Players[PlayerFrame.UnForceFieldBox.Text].Character.ForceField:Destroy() end,
  1952. UnGod = function() game.Players[PlayerFrame.UnGodBox.Text].Character.Humanoid.MaxHealth = 100 end}
  1953.  
  1954. local p = 2
  1955. local ppreviousvalue = 1
  1956. for i,v in pairs(PlayerTabs) do
  1957. if PlayerFrame:FindFirstChild('1') then
  1958. qp = Instance.new("TextButton", PlayerFrame)
  1959. qp.Size = UDim2.new(0.5,0,0,30)
  1960. qp.BackgroundTransparency = 1
  1961. qp.TextColor3 = Color3.new(255,255,255)
  1962. qp.Name = p
  1963. qp.Text = i
  1964. qp.Font = "SourceSansBold"
  1965. qp.FontSize = "Size32"
  1966. qp.Position = PlayerFrame[ppreviousvalue].Position+UDim2.new(0,0,0,38)
  1967. ppreviousvalue = p
  1968. p = p+1
  1969. end
  1970. end
  1971.  
  1972. for q,c in pairs(PlayerTabs) do
  1973. for i,v in pairs(PlayerFrame:GetChildren()) do
  1974. if v.Text == q then
  1975. v.Name = q
  1976. end
  1977. end
  1978. end
  1979.  
  1980. local p = 2
  1981. local ppreviousvalue = 1
  1982. for i,v in pairs(PlayerTabs) do
  1983. if PlayerFrame:FindFirstChild('1') then
  1984. q = Instance.new("TextBox", PlayerFrame)
  1985. q.Size = UDim2.new(0.5,0,0,30)
  1986. q.BackgroundTransparency = 1
  1987. q.TextColor3 = Color3.new(255,255,255)
  1988. q.Name = p
  1989. q.Text = i
  1990. q.Font = "SourceSansBold"
  1991. q.FontSize = "Size32"
  1992. q.Position = PlayerFrame[ppreviousvalue].Position+UDim2.new(0,0,0,38)
  1993. ppreviousvalue = p
  1994. p = p+1
  1995. end
  1996. end
  1997.  
  1998. for q,c in pairs(PlayerTabs) do
  1999. for i,v in pairs(PlayerFrame:GetChildren()) do
  2000. if v.Text == q and v.Name ~= q then
  2001. v.Name = q.."Box"
  2002. v.Position = v.Position+UDim2.new(0.5,0,0,0)
  2003. end
  2004. end
  2005. end
  2006.  
  2007. for i,q in pairs(Frame:GetChildren()) do
  2008. if q:IsA("TextButton") then
  2009. q.MouseButton1Down:connect(function()
  2010. ScriptTable[q.Text]()
  2011. end)
  2012. end
  2013. end
  2014.  
  2015. for i,q in pairs(Frame:GetChildren()) do
  2016. if q:IsA("TextButton") then
  2017. q.MouseButton1Down:connect(function()
  2018. PlayerTabs[q.Text]()
  2019. end)
  2020. end
  2021. end
Add Comment
Please, Sign In to add comment