Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PartSpam:
- local Name = "YOUR_NAME_HERE"
- while true do
- local Number1 = math.random()
- local Number2 = math.random()
- local Number3 = math.random()
- local Part = Instance.new("Part")
- Part.Parent = game.Workspace
- Part.Position = game.Workspace:FindFirstChild(Name).HumanoidRootPart.Position --Use Torso on R6 games--
- Part.Size = Vector3.new(1, 1, 1)
- Part.Color = Color3.new(Number1, Number2, Number3)
- wait(0.01)
- end
- Audio Play:
- local Sound = Instance.new("Sound")
- Sound.Parent = game.Workspace
- Sound.Looped = true
- Sound.Playing = true
- Sound.SoundId = "YOUR SONG HERE"
- Rainbow Trail:
- wait(1.5)
- local Name = "YOUR NAME HERE"
- while true do
- local Number1 = math.random()
- local Number2 = math.random()
- local Number3 = math.random()
- local Part = Instance.new("Part")
- Part.Parent = game.Workspace
- Part.Position = game.Workspace:FindFirstChild(Name).HuamnoidRootPart.Position - Vector3.new (0, 3, 0) --Use Torso on R6 games--
- Part.Size = Vector3.new(1, 1, 1)
- Part.Color = Color3.new(Number1, Number2, Number3)
- Part.Anchored = true
- Part.CanCollide = false
- wait(0.01)
- end
- Human Bomb:
- local Name = game.Players.LocalPlayer.Name
- wait(2)
- local Explosion = Instance.new("Explosion")
- Explosion.Parent = game.Workspace
- Explosion.BlastRadius = 9999999
- Explosion.ExplosionType = "CratersAndDebris"
- Explosion.Position = game.Workspace:FindFirstChild(Name).Torso.Position - Vector3.new(0, 1.5, 0) --Use HumanoidRootPart for R15 Games
- Spawn / Part Lock (Removes baseplate and any other part that enters it aswell. To change it to models only, remove added.Position):
- game.Workspace.ChildAdded:Connect(function(added)
- added:Remove()
- added.Position = Vector3.new(999999, 99999999, 99999999)
- end)
- Mine diamonds Id: rbxassetid://596886258
Advertisement
Add Comment
Please, Sign In to add comment