of     1   

XSS_Injection
#208136808Tuesday, January 24, 2017 10:10 PM GMT

local Status = Instance.new("Hint", game.Workspace) Status.Text = "Loading Game...." while true do wait(5) Status.Text = "Get ready! The bombs will fall in any second now!" wait(10) Status.Text = "The Bombs are near!!" wait(10) Status.Text = "The bombs will fall in: 10" wait(1) Status.Text = "The bombs will fall in: 9" wait(1) Status.Text = "The bombs will fall in: 8" wait(1) Status.Text = "The bombs will fall in: 7" wait(1) Status.Text = "The bombs will fall in: 6" wait(1) Status.Text = "The bombs will fall in: 5" wait(1) Status.Text = "The bombs will fall in: 4" wait(1) Status.Text = "The bombs will fall in: 3" wait(1) Status.Text = "The bombs will fall in: 2" wait(1) Status.Text = "The bombs will fall in: 1" wait(1) Status.Text = "Good luck and Enjoy ;)" local bomb = Instance.new("Part", game.Workspace) bomb.Name = "Bomb" bo########## #B###### bomb.Material = "Metal" bomb.Size = Vector3.new(140,140,140) bomb.Position = Vector3.new(0,6000,0) local Fire = bomb.Fire Fire.Size = Fire.Size.new(100) bomb.Brickcolor = BrickColor.new("Really red") bomb.Position = "Part" --or "Part1" or "Part 2" or "Part 3"-- wait(3) bomb:destroy() end 1. It doesn't change his color. 2. It doesn't get fire. 3. It doesn't change his Material. 4. It doesn't destroy.
XSS_Injection
#208136995Tuesday, January 24, 2017 10:12 PM GMT

Line 36 bomb[DOT]Shape = "Ball"
[rfa#hidefromsearch]
#208141337Tuesday, January 24, 2017 11:18 PM GMT

[rfa#hidefromsearch]
XSS_Injection
#208172838Wednesday, January 25, 2017 8:51 AM GMT

Ah, Thanks. It wasn't a troll, I just watched youtube and then I wanted to make a Complex one..
XSS_Injection
#208183799Wednesday, January 25, 2017 2:19 PM GMT

Doesn't work at all.
[rfa#hidefromsearch]
#208186287Wednesday, January 25, 2017 3:31 PM GMT

[rfa#hidefromsearch]
yankana
#208189573Wednesday, January 25, 2017 4:40 PM GMT

local Status = Instance.new("Hint", game.Workspace) Status.Text = "Loading Game...." while true do wait(5) Status.Text = "Get ready! The bombs will fall in any second now!" wait(10) Status.Text = "The Bombs are near!!" wait(10) for i = 10, 1, -1 do -- start, end, step Status.Text = "The bombs will fall in: " .. i ####### ### ########### = "Good luck and Enjoy ;)" local bomb = Instance.new("Part", workspace) bomb.Name = "Bomb" ########## # ###### bomb.Material = "Metal" bomb.Size = Vector3.new(140,140,140) bomb.Position = Vector3.new(0,6000,0) local Fire = Instance.new("Fire", bomb) -- You have to create it first! Fire.Size = 100 -- This is a normal number value bomb.BrickColor = BrickColor.new("Really red") -- Uppercase C bomb.Touched:Connect(function(hit) local explosion = Instance.new("Explosion", workspace) explosion.Position = bomb.Position bomb:Destroy() end) wait(3) if bomb then bomb:Destroy() end end
yankana
#208189611Wednesday, January 25, 2017 4:40 PM GMT

holy ### did roblox just do this
XSS_Injection
#208195508Wednesday, January 25, 2017 6:10 PM GMT

but it is only say about the fire.. LUA HAS CHANGED A LOT
tyrellkey
#208197450Wednesday, January 25, 2017 6:42 PM GMT

ocu = 10 waittime(1) while true do local Status = Instance.new("Hint", game.Workspace) Status.Text = "Loading Game...." wait(5) Status.Text = "Get ready! The bombs will fall in any second now!" wait(10) Status.Text = "The Bombs are near!!" wait(10) Status.Text = "The bombs will fall in:"..ocu ocu = ocu - 1 ocu = ocu debounce = true wait() Status.Text = "Good luck and Enjoy ;)" I'm not sure if this works, I'm at school so I don't have the output
XSS_Injection
#208204052Wednesday, January 25, 2017 8:36 PM GMT

Right, The problems are when the ball spawns, It doesn't spawn at all sometimes..

    of     1