|
| 19 Apr 2015 06:15 PM |
local player = game.Players:GetPlayers() local mouse = player:GetMouse() script.Parent.Equipped:connect(function() equip = true end) script.Parent.Unequipped:connect(function() equip = false end) mouse.Button1Down:connect(function(mouse) if equip then local BrickToMine = mouse.Target if BrickToMine.Name == 'MineBlock' then for i = 0,1,.1 do BrickToMine.Transparency = 0.1 wait(.5) end player.StatsFolder.Mined.Value = player .StatsFolder.Mined.Value + 1 player.StatsFolder.Money.Value = player.StatsFolder.Money.Value + BrickToMine.MoneyToGive.Value BrickToMine:Destroy() end end end)
God grant me the wisdom to not punch stupid ppl, for I know I will go to prison. |
|
|
| Report Abuse |
|
|
|
| 19 Apr 2015 06:37 PM |
b
God grant me the wisdom to not punch stupid ppl, for I know I will go to prison. |
|
|
| Report Abuse |
|
|
|
| 19 Apr 2015 06:43 PM |
nvbnvbn
God grant me the wisdom to not punch stupid ppl, for I know I will go to prison. |
|
|
| Report Abuse |
|
|
|
| 19 Apr 2015 08:17 PM |
hgjht
God grant me the wisdom to not punch stupid ppl, for I know I will go to prison. |
|
|
| Report Abuse |
|
|
|
| 19 Apr 2015 08:37 PM |
local player = game.Players.LocalPlayer local mouse = player:GetMouse() local equip = false local running = false
script.Parent.Equipped:connect(function() equip = true end) script.Parent.Unequipped:connect(function() equip = false end)
mouse.Button1Down:connect(function() if equip then if running then return end running = true local BrickToMine = mouse.Target if BrickToMine.Name == 'MineBlock' then for i = 1, 10 do BrickToMine.Transparency = BrickToMine.Transparency + 0.1 wait(.5) end --player.StatsFolder.Mined.Value = player .StatsFolder.Mined.Value + 1 --player.StatsFolder.Money.Value = player.StatsFolder.Money.Value + BrickToMine.MoneyToGive.Value BrickToMine:Destroy() end running = false end end) |
|
|
| Report Abuse |
|
|
|
| 20 Apr 2015 02:57 PM |
| bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb |
|
|
| Report Abuse |
|
|
|
| 20 Apr 2015 04:31 PM |
xxx
God grant me the wisdom to not punch stupid ppl, for I know I will go to prison. |
|
|
| Report Abuse |
|
|