null
nil
-
true
-0.5
0.5
0
0
-0.5
0.5
4
0
194
0
1.80000007
0
1
0
0
0
1
0
0
0
1
true
false
0.5
1
0.300000012
-0.5
0.5
0
0
-0.5
0.5
0
0
false
256
ExplodePart
0
-0.5
0.5
0
0
0
0
0
-0.5
0.5
3
0
0
0
0
0
true
1
4
1.20000005
2
-
false
ExplodingBit
-- [[[ WRITTEN BY OIKMO ]]] --
-- [[[ EXPLODESCRIPT ]]] --
local part = script.Parent
local function hint(msg)
co = coroutine.create(function ()
local hint = Instance.new("Hint")
hint.Text = msg
hint.Parent = game.workspace
wait(2.5)
hint:remove()
end)
coroutine.resume(co)
end
part.touched:connect(function(hit)
local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
if plr then
local explosion = Instance.new("Explosion")
explosion.Parent = game.workspace
explosion.Position = part.Position
hint(plr.Name .. " is stupid!!")
end
end)
-- [[[ WRITTEN BY OIKMO ]]] --
true