Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Old time-bomb by supersonicfan111
- local PLAYER="supersonicfan111" -- Replace supersonicfan111 with your name
- local bombsource=[[local p = script.Parent
- for i = 1, 3 do
- wait(1)
- print('tick')
- p.BrickColor=BrickColor.new('Really red')
- wait(1)
- p.BrickColor=BrickColor.new('Really black')
- print('tock')
- end
- for i = 1, 5 do
- p.BrickColor=BrickColor.new('Really red')
- print('tick')
- wait(.5)
- p.BrickColor=BrickColor.new('Really black')
- wait(.5)
- print('tock')
- end
- for i = 1, 5 do
- p.BrickColor=BrickColor.new('Really red')
- print('tick')
- wait(.2)
- p.BrickColor=BrickColor.new('Really black')
- wait(.2)
- print('tock')
- end
- for i = 1, 10 do
- p.BrickColor=BrickColor.new('Really red')
- print('tick')
- wait()
- p.BrickColor=BrickColor.new('Really black')
- wait()
- print('tock')
- end
- wait(.2)
- Instance.new("Explosion", workspace).Position=p.Position
- p:destroy''
- ]]
- M=game:service'Players'[PLAYER]
- M.Chatted:connect(function(msg)
- if msg == 'bomb' then
- local p=Instance.new('Part', workspace)
- p.BrickColor=BrickColor.new('Really black')
- p.Shape='Ball'
- p.TopSurface=0
- p.BottomSurface=0
- p.Name = 'Bomb!'
- p.CFrame=M.Character.Head.CFrame*CFrame.new(0, 1, 0)
- print'created a bomb'
- --if game.CreatorId == 5111623 then
- newScript(bombsource, p)
- --else
- --print'cannot detonate bomb! (404 FUNCTION)'
- --end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement