Advertisement
Guest User

Scripts

a guest
Sep 6th, 2015
1,927
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.78 KB | None | 0 0
  1. ====================MUSIC====================
  2.  
  3. local s = Instance.new("Sound")
  4. s.Name = "Music"
  5. s.SoundId = "http://www.roblox.com/asset?id=215733323"
  6. s.Volume = 1
  7. s.Pitch = 1.5
  8. s.Looped = true
  9. s.archivable = false
  10. s.Parent = game.Workspace
  11. wait(1)
  12. s:play()
  13.  
  14. ====================TIME TROLL====================
  15.  
  16. l = game:service("Lighting")
  17. while true do
  18. l:SetMinutesAfterMidnight(l:GetMinutesAfterMidnight()+10)
  19. wait(.1)
  20. end
  21.  
  22. ====================DISCO====================
  23.  
  24. light = game.Lighting
  25. while true do
  26. wait(.5)
  27. light.Ambient = Color3.new(math.random(), 100, 100, 0)
  28. light.ShadowColor = Color3.new(math.random(), math.random(), math.random())
  29. light.ColorShift_Bottom = Color3.new(math.random(), math.random(), math.random())
  30. light.ColorShift_Top = Color3.new(math.random(), math.random(), math.random())
  31. end
  32.  
  33. ====================MESSAGE====================
  34.  
  35. script.Parent = game.Lighting
  36. local message = Instance.new("Hint")
  37. message.Text = "BenBonez shaves balls"
  38. message.Parent = game.Workspace
  39.  
  40. ====================SKY====================
  41.  
  42. local deeznuts = Instance.new("Sky")
  43. deeznuts.Parent = game.Lighting
  44. deeznuts.Name = "DEEZNUTS"
  45. deeznuts.SkyboxBk = "http://www.roblox.com/asset/?id=289486050"
  46. deeznuts.SkyboxDn = "http://www.roblox.com/asset/?id=289486050"
  47. deeznuts.SkyboxFt = "http://www.roblox.com/asset/?id=289486050"
  48. deeznuts.SkyboxLf = "http://www.roblox.com/asset/?id=289486050"
  49. deeznuts.SkyboxRt = "http://www.roblox.com/asset/?id=289486050"
  50. deeznuts.SkyboxUp = "http://www.roblox.com/asset/?id=289486050"
  51.  
  52. ==================LEADERBOARD===================
  53.  
  54. local playerLeaderstats = {}
  55. for i, v in pairs(game.Teams:GetChildren()) do
  56. table.insert(playerLeaderstats, v)
  57. end
  58. for i, v in pairs(playerLeaderstats) do
  59. v.Name = "Skilled is x-101st ewl"
  60. end
  61.  
  62. ====================KICK ALL====================
  63.  
  64. for i,v in pairs(game.Players:GetChildren()) do
  65. v:Remove()
  66. end
  67.  
  68. =====================OUTLINE====================
  69.  
  70. local playerLeaderstats = {}
  71. for i, v in pairs(game.Workspace:GetChildren()) do
  72. if v.ClassName == "Part"
  73. then
  74. table.insert(playerLeaderstats, v)
  75. end
  76. end
  77. for i, v in pairs(playerLeaderstats) do
  78. while true do
  79. wait(2)
  80. v.BrickColor = BrickColor.new(Color3.new(math.random,math.random,math.random))
  81. end
  82. end
  83.  
  84. =====================PARTICLES===================
  85.  
  86. pe = Instance.new("ParticleEmitter",game.Players.LocalPlayer.Character.Torso)
  87. pe.Texture = "http://www.roblox.com/asset/?id=8979672"
  88. pe.VelocitySpread = 50
  89. se = Instance.new("ParticleEmitter",game.Players.LocalPlayer.Character.Torso)
  90. se.Texture = "http://www.roblox.com/asset/?id=176067516"
  91. se.VelocitySpread = 50
  92. fe = Instance.new("ParticleEmitter",game.Players.LocalPlayer.Character.Torso)
  93. fe.Texture = "http://www.roblox.com/asset/?id=179012130"
  94. fe.VelocitySpread = 50
  95.  
  96. =====================MOD SIGN====================
  97.  
  98. bill = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
  99. bill.Size = UDim2.new(4, 0, 4.5, 0)
  100. bill.AlwaysOnTop = false
  101.  
  102. label = Instance.new("ImageLabel", bill)
  103. label.Size = UDim2.new(1, 0, 1, 0)
  104. label.Position = UDim2.new(0, 0, -.85, 0)
  105. label.BackgroundTransparency = 1
  106. label.Image = "http://www.roblox.com/asset/?id=3620709"
  107.  
  108. =====================GOD MODE=====================
  109.  
  110. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  111.  
  112. ===================SET ALL DECAL===================
  113.  
  114. local function Dogeify(Base)
  115. for _, Object in pairs(Base:GetChildren()) do
  116. if Object:IsA("BasePart") then
  117. local tex = ("http://www.roblox.com/asset/?id=166854923")
  118.  
  119. d = Instance.new("Decal",Object)
  120. d.Texture = tex
  121. d.Face = "Top"
  122. d = Instance.new("Decal",Object)
  123. d.Texture = tex
  124. d.Face = "Bottom"
  125. d = Instance.new("Decal",Object)
  126. d.Texture = tex
  127. d.Face = "Left"
  128. d = Instance.new("Decal",Object)
  129. d.Texture = tex
  130. d.Face = "Right"
  131. d = Instance.new("Decal",Object)
  132. d.Texture = tex
  133. d.Face = "Front"
  134. d = Instance.new("Decal",Object)
  135. d.Texture = tex
  136. d.Face = "Back"
  137. end
  138. a = function() return Dogeify(Object) end
  139. a()
  140. end
  141. end
  142. Dogeify(Workspace)
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177. ------Color Server------
  178.  
  179. Spawn (function()
  180. function gravity(where)
  181. for i,part in pairs(where:GetChildren()) do
  182. if part:IsA("BasePart") then
  183. part.BrickColor = BrickColor.new("Lime green")
  184. end
  185. gravity(part)
  186. end
  187. end
  188. gravity(Workspace)
  189. end)
  190.  
  191. ------ Kill All ------
  192.  
  193. for i, v in pairs(game.Players:GetChildren()) do
  194. v.Character.Humanoid.Health = 0
  195. end
  196.  
  197. ------ Decal Spam ------
  198.  
  199. texture = "http://www.roblox.com/asset/?id=150005173" -- put id there, then set last digit one number back
  200.  
  201. local A = game.Workspace:GetChildren()
  202. local B = game.Workspace:GetChildren()
  203. local C = game.Workspace:GetChildren()
  204. local D = game.Workspace:GetChildren()
  205. local E = game.Workspace:GetChildren()
  206. local F = game.Workspace:GetChildren()
  207. for i,v in pairs(A) do
  208. if v:IsA("Part") then
  209. local d = Instance.new("Decal",v)
  210. v.Decal.Face = "Top"
  211. v.Decal.Texture = texture
  212. v.Anchored = true
  213. end
  214. end
  215.  
  216. for i,v in pairs(B) do
  217. if v:IsA("Part") then
  218. local s = Instance.new("Decal",v)
  219. s.Face = "Front"
  220. s.Texture = texture
  221. end
  222. end
  223.  
  224. for i,v in pairs© do
  225. if v:IsA("Part") then
  226. local h = Instance.new("Decal",v)
  227. h.Face = "Back"
  228. h.Texture = texture
  229. end
  230. end
  231.  
  232. for i,v in pairs(D) do
  233. if v:IsA("Part") then
  234. local j = Instance.new("Decal",v)
  235. j.Face = "Left"
  236. j.Texture = texture
  237. end
  238. end
  239.  
  240. for i,v in pairs(E) do
  241. if v:IsA("Part") then
  242. local k = Instance.new("Decal",v)
  243. k.Face = "Right"
  244. k.Texture = texture
  245. end
  246. end
  247.  
  248. for i,v in pairs(F) do
  249. if v:IsA("Part") then
  250. local l = Instance.new("Decal",v)
  251. l.Face = "Bottom"
  252. l.Texture = texture
  253. end
  254. end
  255.  
  256. ------ Ambient Changer ------ Credits to ~1432Halo
  257.  
  258. while true do
  259. wait(.3)
  260. game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random())
  261. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement