Advertisement
deathlessNoobs

Untitled

Aug 11th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.08 KB | None | 0 0
  1. --[[
  2. --//Scripted by AnimeWiki and MiniNob
  3. --//06.29.2015
  4. --//http://www.roblox.com/User.aspx?ID=71436898
  5. --//http://www.roblox.com/User.aspx?id=42412883
  6. ]]
  7.  
  8.  
  9. a = {}
  10.  
  11.  
  12. a.Brickcolor = "Bright yellow"
  13. a.sbcolor = "Bright yellow"
  14. a.c = ":"
  15. a.cmds = {
  16. "dt","cmds","ban","kick","colors","ping","respawn","ff","shutdown","unff","uff","time",
  17. "god","ungod","ugod","walkspeed","wp","notools","notool","btools","hats"
  18. }
  19. a.bin = {}
  20. a.bl = {}
  21.  
  22. a.Colors = {
  23. 'Br. yellowish green','Bright yellow','Bright orange','Bright red','Bright violet','Bright blue','Bright bluish green',
  24. 'Bright green','Institutional white','White','Light stone grey','Mid gray','Medium stone grey','Dark stone grey','Black',
  25. 'Really black','Grime','Br. yellowish orange','Light orange','Sand red','Lavender','Sand blue','Medium blue','Sand green',
  26. 'Brick yellow','Cool yellow','Neon orange','Medium red','Light reddish violet','Pastel Blue','Teal','Medium green',
  27. 'Pastel brown','Pastel yellow','Pastel orange','Pink','Pastel violet','Pastel light blue','Pastel blue-green','Pastel green',
  28. 'Olive','New Yeller','Deep orange','Really red','Hot pink','Really blue','Toothpaste','Lime green','Brown','Nougat','Dark orange',
  29. 'Royal purple','Alder','Cyan','Light blue','Camo','Reddish brown','CGA brown','Dusty Rose','Magenta','Deep blue','Navy blue',
  30. 'Dark green','Earth green','Brick','Custom','Plate','Symmetric','Block','Ball','Cylinder';
  31. }
  32.  
  33.  
  34. r,x,y,z = 0,0,0,0
  35.  
  36. player = game:GetService("Players").LocalPlayer
  37. player.Character:WaitForChild("Humanoid")
  38.  
  39. function calculatetime()
  40. local part = createTab("time")
  41. coroutine.wrap(function()
  42. repeat wait()
  43.  
  44. local t = os.time()
  45. part:FindFirstChild("BillboardGui").TextLabel.Text = ("%.2d:%.2d:%.2d"):format(t/3600%24,t/60%60,t%60)
  46. until part == nil or part.Parent ==nil
  47. end)()
  48. end
  49.  
  50. player.Chatted:connect(function(message)
  51. if string.sub(message:lower(),1,string.len(a.c)) == a.c:lower() and string.len(message) ~= 1 then
  52. local b = tonumber(string.len(a.c) + 1)
  53. local message = string.sub(message,b)
  54. for k,v in pairs(a.cmds) do
  55. if string.sub(v:lower(),1,string.len(message)) == message:lower() then
  56. if v:lower() ~= "ban" or v:lower() ~= "kick" or v:lower() ~= "walkspeed" or v:lower() ~= "wp "then
  57. if v:lower() == "dt" then
  58. for k,v in pairs(a.bin) do
  59. v:remove()
  60. end
  61. elseif v:lower() == "hats" then
  62.  
  63. createTab("Creepy Bunny",nil,nil,"http://www.roblox.com/asset/?id=85849146","http://www.roblox.com/asset/?id=85849108"):WaitForChild("ClickDetector").MouseClick:connect(function()
  64. local hat = Instance.new("Hat", player.Character)
  65. hat.Name = "Creepy Bunny"
  66. local handle = Instance.new("Part", hat)
  67. handle.Name = "Handle"
  68. local sp = Instance.new("SpecialMesh", handle)
  69. sp.MeshId = "http://www.roblox.com/asset/?id=85849146"
  70. sp.TextureId = "http://www.roblox.com/asset/?id=85849108"
  71. end)
  72. createTab("Dark Conjurer",nil,nil,"http://www.roblox.com/asset/?id=93129244","http://www.roblox.com/asset/?id=93129336")
  73.  
  74. elseif v:lower() == "btools" then
  75. pcall(function()
  76. for i=1, 3 do
  77. local hop =Instance.new("HopperBin", player.Backpack)
  78. if i == 1 then
  79. hop.BinType = "Grab"
  80. elseif i == 2 then
  81. hop.BinType = "Clone"
  82. elseif i == 3 then
  83. hop.BinType = "Hammer"
  84. end
  85. end
  86. end)
  87. elseif v:lower() == "notools" or v:lower() == "notool" then
  88. for k,v in pairs(player.Backpack:GetChildren()) do
  89. if v.ClassName ~= "Script" or v.ClassName ~= "LocalScript" then
  90. v:remove()
  91. end
  92. end
  93. elseif v:lower() == "ugod" or v:lower() == "ungod" then
  94. pcall(function()
  95. player.Character.Humanoid.MaxHealth = 100
  96. player.Character.Humanoid.Health = 100
  97. end)
  98. elseif v:lower() == "god" then
  99. pcall(function()
  100. player.Character.Humanoid.MaxHealth = math.huge
  101. player.Character.Humanoid.Health = math.huge
  102. end)
  103. elseif v:lower() == "time" then
  104. calculatetime()
  105. elseif v:lower() == "unff" or v:lower() == "uff" then
  106. for k,v in pairs(player.Character:GetChildren()) do
  107. if v.ClassName == "ForceField" then
  108. pcall(function()
  109. v:remove()
  110. end)
  111. end
  112. end
  113. elseif v:lower() == "shutdown" then
  114. createTab("Are you sure you want to shutdown ?"):WaitForChild("ClickDetector").MouseClick:connect(function(pl)
  115. if pl == player then
  116. for k,v in pairs(a.bin) do
  117. v:remove()
  118. end
  119. for k,v in pairs(game:GetService("Players"):GetPlayers()) do
  120. v:remove()
  121. end
  122. end
  123. end)
  124. elseif v:lower() == "respawn" then
  125. player:LoadCharacter()
  126. elseif v:lower() == "ff" then
  127. for a,b in pairs(player.Character:GetChildren()) do
  128. if b.ClassName == "ForceField" then
  129. pcall(function()
  130. b:remove()
  131. end)
  132. end
  133. end
  134. Instance.new("ForceField", player.Character)
  135. elseif v:lower() == "cmds" then
  136. for k,v in pairs(a.cmds) do
  137. createTab(v..("(1)"))
  138. end
  139. elseif v:lower() == "colors" then
  140. for k,v in pairs(a.Colors) do
  141. createTab("",v,v):WaitForChild("ClickDetector").MouseClick:connect(function(pl)
  142. if pl == player then
  143. a.Brickcolor = v
  144. a.sbcolor = v
  145. wait(.25)
  146. for a,b in pairs(a.bin) do
  147. b:remove()
  148. end
  149. end
  150. end)
  151. end
  152. --elseif v:lower() == "cmds" then
  153. end
  154. end
  155.  
  156. end
  157.  
  158. end
  159. if string.sub(message:lower(),1,3) == "ban" then
  160. local message = string.sub(message:gsub(" ",""),4)
  161.  
  162. for k,v in pairs(game:GetService("Players"):GetPlayers()) do
  163. if string.find(string.sub(v.Name:lower(),1,string.len(message)),message:lower()) ~=nil and string.len(message) ~= 0 then
  164. table.insert(a.bl,v)
  165. end
  166. end
  167. elseif string.sub(message:lower(),1,4) == "ping" then
  168. local message = string.sub(message:gsub(" ",""),5)
  169. createTab(message)
  170. elseif string.sub(message:lower(),1,7) == "respawn" then
  171. local message = string.sub(message:gsub(" ",""),8)
  172. for k,v in pairs(game:GetService("Players"):GetPlayers()) do
  173. if string.find(string.sub(v.Name:lower(),1,string.len(message)),message:lower()) ~=nil and string.len(message) ~= 0 then
  174. pcall(function()
  175. v:LoadCharacter()
  176. end)
  177. end
  178. end
  179. elseif string.sub(message:lower(),1,2) == "ff" then
  180. local message = string.sub(message:gsub(" ",""),3)
  181. for k,v in pairs(game:GetService("Players"):GetPlayers()) do
  182. if string.find(string.sub(v.Name:lower(),1,string.len(message)),message:lower()) ~=nil and string.len(message) ~= 0 then
  183. for a,b in pairs(v.Character:GetChildren()) do
  184. if b.ClassName == "ForceField" then
  185. pcall(function()
  186. b:remove()
  187. end)
  188. end
  189. end
  190. Instance.new("ForceField", player.Character)
  191. end
  192. end
  193.  
  194. elseif string.sub(message:lower(),1,4) == "kick" then
  195. local message = string.sub(message:gsub(" ",""),5)
  196. for k,v in pairs(game:GetService("Players"):GetPlayers()) do
  197. if string.find(string.sub(v.Name:lower(),1,string.len(message)),message:lower()) ~=nil and string.len(message) ~= 0 then
  198. v:remove()
  199. end
  200. end
  201.  
  202. end
  203. end
  204. end)
  205.  
  206. function createTab(text,brickcolor,sccolor,mesh,mt)
  207. local part = Instance.new("Part", workspace)
  208. part.FormFactor = "Custom"
  209. part.Size = Vector3.new(2,2,.1)
  210. part.BottomSurface = "Smooth"
  211. part.Material = "Concrete"
  212. part.TopSurface = "Smooth"
  213. part.CFrame = player.Character.Torso.CFrame
  214. part.Anchored = true
  215. part.Locked = true
  216. part.Transparency = .5
  217. part.CanCollide = false
  218.  
  219. if brickcolor ~= nil then
  220. part.BrickColor = BrickColor.new(brickcolor)
  221. elseif brickcolor == nil then
  222. part.BrickColor = BrickColor.new(a.Brickcolor)
  223. end
  224.  
  225. local cd = Instance.new("ClickDetector", part)
  226. cd.MaxActivationDistance = math.huge
  227. local sc = Instance.new("SelectionBox", part)
  228. sc.Adornee = part
  229. sc.Transparency = .3
  230.  
  231. if sccolor ~=nil then
  232. sc.Color = BrickColor.new(sccolor)
  233. elseif sccolor ==nil then
  234. sc.Color = BrickColor.new(a.sbcolor)
  235. end
  236.  
  237. local bb = Instance.new("BillboardGui",part)
  238. bb.StudsOffset = Vector3.new(0,3,0)
  239. bb.Size = UDim2.new(4,0,4,0)
  240. local tl =Instance.new('TextLabel',bb)
  241. tl.Text = text
  242. tl.BackgroundTransparency = 0
  243. tl.Size = UDim2.new(1,0,1,0)
  244. tl.TextColor3 = Color3.new(1,1,1)
  245. tl.Font = "ArialBold"
  246. tl.BackgroundTransparency = 1
  247. tl.FontSize = "Size18"
  248. tl.TextTransparency = .3
  249. tl.TextStrokeTransparency = 0
  250. tl.TextTransparency = .2
  251. tl.TextStrokeColor3 = Color3.new(BrickColor.new("Yellow"))
  252.  
  253. if mesh ~=nil then
  254. local sp = Instance.new("SpecialMesh", part)
  255. sp.MeshId = mesh
  256. sp.TextureId = mt
  257. part.Transparency = 0
  258. sc:remove()
  259. end
  260.  
  261. cd.MouseClick:connect(function(pl)
  262. if pl == player and mesh ==nil then
  263.  
  264. for i=.5,1.1,.2 do
  265. part.Transparency = i
  266. pcall(function()
  267. sc.Transparency = i
  268. end)
  269. pcall(function()tl.TextTransparency = i end)
  270. wait()
  271. end
  272. end
  273.  
  274. end)
  275.  
  276. table.insert(a.bin,part)
  277. return part
  278. end
  279.  
  280. coroutine.wrap(function()
  281. while wait() do
  282.  
  283. if r == 360 then
  284. r = 0
  285. end
  286.  
  287. --[[for i=#a.bin,1,-1 do
  288. if a.bin[i]==nil or a.bin[i].Parent==nil then
  289. pcall(function()a.bin[i]:Destroy()end)
  290. table.remove(a.bin,i) end
  291. end]]
  292.  
  293.  
  294. for k,v in pairs(a.bl) do
  295. if v ~=nil then
  296. pcall(function()
  297. v:remove()
  298. end)
  299. end
  300. end
  301.  
  302.  
  303. for k,v in pairs(a.bin) do
  304. if v.Parent == nil or v == nil then
  305. pcall(function() v:remove() end)
  306. table.remove(a.bin,k)
  307. end
  308. end
  309.  
  310. local angle = 360/#a.bin
  311.  
  312. for k,v in pairs(a.bin) do
  313. v.CFrame=CFrame.new(v.CFrame.p:Lerp((
  314. CFrame.new(player.Character.Torso.Position)
  315. *CFrame.fromEulerAnglesXYZ(0,math.rad(k*angle+r),0)
  316. *CFrame.new(Vector3.new(0,0,(-#a.bin)/2-5))).p
  317. ,.15)) *CFrame.fromEulerAnglesXYZ(0,math.rad(x),math.rad(r))
  318. end
  319.  
  320. r = r + .5
  321. x = x + 1
  322.  
  323. end
  324. end)()
  325.  
  326.  
  327. createTab('Created By AnimeWiki')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement