Advertisement
Guest User

aimbot kat roblox

a guest
Mar 23rd, 2020
10,368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.26 KB | None | 0 0
  1. clicker dropper script:
  2.  
  3. wait(2)
  4. workspace:WaitForChild("PartStorage")
  5.  
  6.  
  7. deb = true
  8. script.Parent.Clicker.ClickDetector.MouseClick:connect(function(wat)
  9. if deb == true then
  10. deb = false
  11. local part = Instance.new("Part",workspace.PartStorage)
  12. part.BrickColor=script.Parent.Parent.Parent.DropColor.Value
  13. part.Material=script.Parent.Parent.Parent.MaterialValue.Value
  14. local cash = Instance.new("IntValue",part)
  15. cash.Name = "Cash"
  16. cash.Value = 1 -- How much the drops are worth
  17. part.CFrame = script.Parent.Drop.CFrame - Vector3.new(0,1.3,0)
  18. part.FormFactor = "Custom"
  19. part.Size=Vector3.new(1, 1, 1) -- Size of the drops
  20. part.TopSurface = "Smooth"
  21. part.BottomSurface = "Smooth"
  22. game.Debris:AddItem(part,20) -- How long until the drops expire
  23. wait(.15)
  24. deb = true
  25. end
  26. end)
  27.  
  28. dropper script:
  29. wait(2)
  30. workspace:WaitForChild("PartStorage")
  31.  
  32. while true do
  33. wait(1.5) -- How long in between drops
  34. local part = Instance.new("Part",workspace.PartStorage)
  35. part.BrickColor=script.Parent.Parent.Parent.DropColor.Value
  36. part.Material=script.Parent.Parent.Parent.MaterialValue.Value
  37. local cash = Instance.new("IntValue",part)
  38. cash.Name = "Cash"
  39. cash.Value = 5 -- How much the drops are worth
  40. part.CFrame = script.Parent.Drop.CFrame - Vector3.new(0,1.4,0)
  41. part.FormFactor = "Custom"
  42. part.Size=Vector3.new(1.2, 1.2, 1.2) -- Size of the drops
  43. part.TopSurface = "Smooth"
  44. part.BottomSurface = "Smooth"
  45. game.Debris:AddItem(part,20) -- How long until the drops expire
  46. end
  47.  
  48. upgrader:
  49. script.Parent.Upgrader.Touched:connect(function(Part)
  50. if Part:FindFirstChild("Cash") then
  51. Part.Cash.Value = Part.Cash.Value + 5 -- Try not to use * because if the game lags, parts may be worth millions each due to debounce
  52. end
  53. end)
  54.  
  55. ownerdoorbuttonscript:
  56. v = script.Parent.Parent.Value
  57. click = script.Parent.ClickDetector
  58.  
  59. function wat(player)
  60. if player.TeamColor == script.Parent.Parent.Parent.Parent.TeamColor.Value then
  61. if v.Value == true then
  62. v.Value = false
  63. script.Parent.BrickColor = BrickColor.new("Really red")
  64. for i,v in pairs(script.Parent.Parent.Lasers:GetChildren()) do
  65. v.BrickColor = BrickColor.new("Bright green")
  66. v.Transparency = .8
  67. end
  68.  
  69. elseif v.Value == false then
  70. v.Value = true
  71. script.Parent.BrickColor = BrickColor.new("Lime green")
  72. for i,v in pairs(script.Parent.Parent.Lasers:GetChildren()) do
  73. v.BrickColor = BrickColor.new("Bright red")
  74. v.Transparency = .2
  75. end
  76.  
  77. end
  78. end
  79. end
  80.  
  81. click.MouseClick:connect(wat)
  82.  
  83. owner killbrickscript:
  84. val = script.Parent.Parent.Parent.Value
  85.  
  86. function touc(part)
  87. local plr = game.Players:FindFirstChild(part.Parent.Name)
  88. if plr then
  89. local h = part.Parent:FindFirstChild("Humanoid")
  90. if h then
  91. if val.Value == true then
  92. if part.Parent.Name ~= script.Parent.Parent.Parent.Parent.Parent.Owner.Value.Character.Name then
  93. h.Health = 0
  94. end
  95. end
  96. end
  97. end
  98. end
  99. script.Parent.Touched:connect(touc)
  100.  
  101. colorizers:
  102. for i,v in pairs(script.Parent.Buttons:GetChildren()) do
  103. v.ClickDetector.MouseClick:connect(function()
  104. script.Parent.Parent.Parent.DropColor.Value = v.BrickColor
  105. script.Parent.Showing.BrickColor = v.BrickColor
  106. end)
  107. end
  108.  
  109. mtirial sizersc:
  110. for i,v in pairs(script.Parent.Buttons:GetChildren()) do
  111. v.ClickDetector.MouseClick:connect(function()
  112. script.Parent.Parent.Parent.MaterialValue.Value = v.Material.Name
  113. script.Parent.Showing.Material = v.Material.Name
  114. end)
  115. end
  116.  
  117. Gate Control:
  118. script.Parent.Head.Touched:connect(function(hit)
  119. local player = game.Players:GetPlayerFromCharacter(hit.Parent)
  120. if player ~= nil then
  121. local PlayerStats = game.ServerStorage.PlayerMoney:FindFirstChild(player.Name)
  122. if PlayerStats ~= nil then
  123. local ownstycoon = PlayerStats:FindFirstChild("OwnsTycoon")
  124. if ownstycoon ~= nil then
  125. if ownstycoon.Value == nil then
  126. if script.Parent.Parent.Parent.Owner.Value == nil then
  127. if hit.Parent:FindFirstChild("Humanoid") then
  128. if hit.Parent.Humanoid.Health > 0 then
  129. script.Parent.Parent.Parent.Owner.Value = player
  130. ownstycoon.Value = script.Parent.Parent.Parent
  131. script.Parent.Name = player.Name.."'s Tycoon"
  132. script.Parent.Head.Transparency = 0.6
  133. script.Parent.Head.CanCollide = false
  134. player.TeamColor = script.Parent.Parent.Parent.TeamColor.Value
  135. end
  136. end
  137. end
  138. end
  139. end
  140. end
  141. end
  142. end)
  143.  
  144. ---------------------------------------------------------------------------------------------------------
  145.  
  146. wepon giver script:
  147.  
  148. local debounce = false
  149.  
  150. function getPlayer(humanoid)
  151. local players = game.Players:children()
  152. for i = 1, #players do
  153. if players[i].Character.Humanoid == humanoid then return players[i] end
  154. end
  155. return nil
  156. end
  157.  
  158. function onTouch(part)
  159.  
  160. local human = part.Parent:findFirstChild("Humanoid")
  161. if (human ~= nil) and debounce == false then
  162.  
  163. debounce = true
  164.  
  165. local player = getPlayer(human)
  166.  
  167. if (player == nil) then return end
  168.  
  169. script.Parent:clone().Parent = player.Backpack
  170.  
  171. wait(2)
  172. debounce = false
  173. end
  174. end
  175.  
  176.  
  177. script.Parent.Parent.Touched:connect(onTouch)
  178.  
  179. Infinite cash:
  180.  
  181. deb = false
  182. script.Parent.Touched:connect(function(part)
  183. if game.Players:FindFirstChild(part.Parent.Name) then
  184. if deb == false then
  185. deb = true
  186. local plr = game.ServerStorage.PlayerMoney:FindFirstChild(part.Parent.Name)
  187. script.Parent.BrickColor = BrickColor.new("Bright red")
  188. plr.Value = plr.Value + script.Parent.Parent.Amount.Value
  189. wait(script.Parent.Parent.TimeToWait.Value)
  190. deb = false
  191. script.Parent.BrickColor = BrickColor.new("Bright green")
  192. end
  193. end
  194. end)
  195.  
  196. display script:
  197.  
  198. script.Parent.Text = "$"..script.Parent.Parent.Parent.Parent.Parent.Parent.CurrencyToCollect.Value
  199. -- Shows initial value if anything is currently in the CurrencyToCollect
  200.  
  201.  
  202. script.Parent.Parent.Parent.Parent.Parent.Parent.CurrencyToCollect.Changed:connect(function(money)
  203. script.Parent.Text = "$"..money
  204. end)
  205.  
  206. cod emastersc
  207.  
  208. Code = "2323" --change To any numbers You like
  209. Input = ""
  210.  
  211.  
  212. --This Is for my buddy siros
  213.  
  214. --created by
  215. ------------------------------------------
  216. --Clear And Enter
  217.  
  218. function Clear()
  219. print("Cleared")
  220. Input = ""
  221. end
  222.  
  223. script.Parent.Clear.ClickDetector.MouseClick:connect(Clear)
  224.  
  225.  
  226.  
  227.  
  228. function Enter()
  229. if Input == Code then
  230. print("Entered")
  231. Input = ""
  232.  
  233. local door = script.Parent.Parent.Door
  234.  
  235. door.CanCollide = false
  236. door.Transparency = door.Transparency + 0.1
  237. wait(0.1)
  238. door.Transparency = door.Transparency + 0.1
  239. wait(0.1)
  240. door.Transparency = door.Transparency + 0.1
  241. wait(0.1)
  242. door.Transparency = door.Transparency + 0.1
  243. wait(0.1)
  244. door.Transparency = door.Transparency + 0.1
  245. wait(0.1)
  246. door.Transparency = door.Transparency + 0.1
  247. wait(0.1)
  248. door.Transparency = door.Transparency + 0.1
  249. wait(0.1)
  250. door.Transparency = 0.8
  251. wait(3)--
  252. door.Transparency = door.Transparency - 0.1
  253. wait(0.1)
  254. door.Transparency = door.Transparency - 0.1
  255. wait(0.1)
  256. door.Transparency = door.Transparency - 0.1
  257. wait(0.1)
  258. door.Transparency = door.Transparency - 0.1
  259. wait(0.1)
  260. door.Transparency = door.Transparency - 0.1
  261. wait(0.1)
  262. door.Transparency = door.Transparency - 0.1
  263. wait(0.1)
  264. door.Transparency = door.Transparency - 0.1
  265. wait(0.1)
  266. door.Transparency = 0
  267. door.CanCollide = true
  268.  
  269.  
  270.  
  271. return end
  272. Input = ""
  273. print("Wrong Code")
  274. end
  275.  
  276.  
  277.  
  278.  
  279. script.Parent.Enter.ClickDetector.MouseClick:connect(Enter)
  280.  
  281. ------------------------------------------
  282. --Digets
  283.  
  284.  
  285. function Click0()
  286. Input = Input..0
  287. print("0")
  288. script.Parent.B0.Decal.Texture = "http://www.roblox.com/asset/?id=2767674"
  289. wait(0.1)
  290. script.Parent.B0.Decal.Texture = "http://www.roblox.com/asset/?id=2761903"
  291. end
  292.  
  293. script.Parent.B0.ClickDetector.MouseClick:connect(Click0)
  294.  
  295. function Click1()
  296. Input = Input..1
  297. print("1")
  298. script.Parent.B1.Decal.Texture = "http://www.roblox.com/asset/?id=2767677"
  299. wait(0.1)
  300. script.Parent.B1.Decal.Texture = "http://www.roblox.com/asset/?id=2761913"
  301. end
  302.  
  303. script.Parent.B1.ClickDetector.MouseClick:connect(Click1)
  304.  
  305. function Click2()
  306. Input = Input..2
  307. print("2")
  308. script.Parent.B2.Decal.Texture = "http://www.roblox.com/asset/?id=2767680"
  309. wait(0.1)
  310. script.Parent.B2.Decal.Texture = "http://www.roblox.com/asset/?id=2761922"
  311. end
  312.  
  313. script.Parent.B2.ClickDetector.MouseClick:connect(Click2)
  314.  
  315. function Click3()
  316. Input = Input..3
  317. print("3")
  318. script.Parent.B3.Decal.Texture = "http://www.roblox.com/asset/?id=2767686"
  319. wait(0.1)
  320. script.Parent.B3.Decal.Texture = "http://www.roblox.com/asset/?id=2761927"
  321. end
  322.  
  323. script.Parent.B3.ClickDetector.MouseClick:connect(Click3)
  324.  
  325. function Click4()
  326. Input = Input..4
  327. print("4")
  328. script.Parent.B4.Decal.Texture = "http://www.roblox.com/asset/?id=2767693"
  329. wait(0.1)
  330. script.Parent.B4.Decal.Texture = "http://www.roblox.com/asset/?id=2761938"
  331. end
  332.  
  333. script.Parent.B4.ClickDetector.MouseClick:connect(Click4)
  334.  
  335. function Click5()
  336. Input = Input..5
  337. print("5")
  338. script.Parent.B5.Decal.Texture = "http://www.roblox.com/asset/?id=2767695"
  339. wait(0.1)
  340. script.Parent.B5.Decal.Texture = "http://www.roblox.com/asset/?id=2761943"
  341. end
  342.  
  343. script.Parent.B5.ClickDetector.MouseClick:connect(Click5)
  344.  
  345. function Click6()
  346. Input = Input..6
  347. print("6")
  348. script.Parent.B6.Decal.Texture = "http://www.roblox.com/asset/?id=2767699"
  349. wait(0.1)
  350. script.Parent.B6.Decal.Texture = "http://www.roblox.com/asset/?id=2761948"
  351. end
  352.  
  353. script.Parent.B6.ClickDetector.MouseClick:connect(Click6)
  354.  
  355. function Click7()
  356. Input = Input..7
  357. print("7")
  358. script.Parent.B7.Decal.Texture = "http://www.roblox.com/asset/?id=2767701"
  359. wait(0.1)
  360. script.Parent.B7.Decal.Texture = "http://www.roblox.com/asset/?id=2761956"
  361. end
  362.  
  363. script.Parent.B7.ClickDetector.MouseClick:connect(Click7)
  364.  
  365. function Click8()
  366. Input = Input..8
  367. print("8")
  368. script.Parent.B8.Decal.Texture = "http://www.roblox.com/asset/?id=2767707"
  369. wait(0.1)
  370. script.Parent.B8.Decal.Texture = "http://www.roblox.com/asset/?id=2761961"
  371. end
  372.  
  373. script.Parent.B8.ClickDetector.MouseClick:connect(Click8)
  374.  
  375. function Click9()
  376. Input = Input..9
  377. print("9")
  378. script.Parent.B9.Decal.Texture = "http://www.roblox.com/asset/?id=2767714"
  379. wait(0.1)
  380. script.Parent.B9.Decal.Texture = "http://www.roblox.com/asset/?id=2761971"
  381. end
  382.  
  383. script.Parent.B9.ClickDetector.MouseClick:connect(Click9)
  384.  
  385. ope n sc (plz num 0 in script
  386.  
  387. door = script.Parent.Parent.Door
  388.  
  389. function clicked()
  390. if script.Value.Value == 0 then
  391. print("Opened")
  392. script.Value.Value = 1
  393. local door = script.Parent.Parent.Door
  394.  
  395. door.CanCollide = false
  396. door.Transparency = door.Transparency + 0.1
  397. wait(0.1)
  398. door.Transparency = door.Transparency + 0.1
  399. wait(0.1)
  400. door.Transparency = door.Transparency + 0.1
  401. wait(0.1)
  402. door.Transparency = door.Transparency + 0.1
  403. wait(0.1)
  404. door.Transparency = door.Transparency + 0.1
  405. wait(0.1)
  406. door.Transparency = door.Transparency + 0.1
  407. wait(0.1)
  408. door.Transparency = door.Transparency + 0.1
  409. wait(0.1)
  410. door.Transparency = 0.8
  411. wait(3)--
  412. door.Transparency = door.Transparency - 0.1
  413. wait(0.1)
  414. door.Transparency = door.Transparency - 0.1
  415. wait(0.1)
  416. door.Transparency = door.Transparency - 0.1
  417. wait(0.1)
  418. door.Transparency = door.Transparency - 0.1
  419. wait(0.1)
  420. door.Transparency = door.Transparency - 0.1
  421. wait(0.1)
  422. door.Transparency = door.Transparency - 0.1
  423. wait(0.1)
  424. door.Transparency = door.Transparency - 0.1
  425. wait(0.1)
  426. door.Transparency = 0
  427. door.CanCollide = true
  428. script.Value.Value = 0
  429. end
  430. end
  431.  
  432.  
  433. script.Parent.ClickDetector.MouseClick:connect(clicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement