Joshument

Scripts for limited lua

May 2nd, 2018
4,724
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.81 KB | None | 0 0
  1. PartSpam:
  2.  
  3. local Name = "YOUR_NAME_HERE"
  4. while true do
  5.     local Number1 = math.random()
  6.     local Number2 = math.random()
  7.     local Number3 = math.random()
  8.     local Part = Instance.new("Part")
  9.     Part.Parent = game.Workspace
  10.     Part.Position = game.Workspace:FindFirstChild(Name).HumanoidRootPart.Position --Use Torso on R6 games--
  11.     Part.Size = Vector3.new(1, 1, 1)
  12.     Part.Color = Color3.new(Number1, Number2, Number3)
  13.     wait(0.01)
  14. end
  15.  
  16. Audio Play:
  17. local Sound = Instance.new("Sound")
  18. Sound.Parent = game.Workspace
  19. Sound.Looped = true
  20. Sound.Playing = true
  21. Sound.SoundId = "YOUR SONG HERE"
  22.  
  23. Rainbow Trail:
  24.  
  25. wait(1.5)
  26.  
  27. local Name = "YOUR NAME HERE"
  28. while true do
  29.     local Number1 = math.random()
  30.     local Number2 = math.random()
  31.     local Number3 = math.random()
  32.     local Part = Instance.new("Part")
  33.     Part.Parent = game.Workspace
  34.     Part.Position = game.Workspace:FindFirstChild(Name).HuamnoidRootPart.Position - Vector3.new (0, 3, 0) --Use Torso on R6 games--
  35.     Part.Size = Vector3.new(1, 1, 1)
  36.     Part.Color = Color3.new(Number1, Number2, Number3)
  37.     Part.Anchored = true
  38.     Part.CanCollide = false
  39.     wait(0.01)
  40. end
  41.  
  42. Human Bomb:
  43.  
  44. local Name = game.Players.LocalPlayer.Name
  45. wait(2)
  46. local Explosion = Instance.new("Explosion")
  47. Explosion.Parent = game.Workspace
  48. Explosion.BlastRadius = 9999999
  49. Explosion.ExplosionType = "CratersAndDebris"
  50. Explosion.Position = game.Workspace:FindFirstChild(Name).Torso.Position - Vector3.new(0, 1.5, 0) --Use HumanoidRootPart for R15 Games
  51.  
  52. Spawn / Part Lock (Removes baseplate and any other part that enters it aswell. To change it to models only, remove added.Position):
  53.  
  54. game.Workspace.ChildAdded:Connect(function(added)
  55.     added:Remove()
  56.     added.Position = Vector3.new(999999, 99999999, 99999999)
  57. end)
  58.  
  59.  
  60.  
  61. Mine diamonds Id: rbxassetid://596886258
Advertisement
Add Comment
Please, Sign In to add comment