|
| 29 Jun 2013 09:05 PM |
I want to know so I can try to learn how.
The two most common elements in the universe are hydrogen and stupidity. |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 Jun 2013 09:07 PM |
... Like make it do something.
The two most common elements in the universe are hydrogen and stupidity. |
|
|
| Report Abuse |
|
|
robotmega
|
  |
| Joined: 16 May 2009 |
| Total Posts: 14084 |
|
|
| 29 Jun 2013 09:08 PM |
| a brick that deletes everything that touches it |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:09 PM |
| If you know absolutely nothing about scripting, then I suggest that you head on over to the roblox wiki and read up on scripting. |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:09 PM |
Robot can you invite me to party
The two most common elements in the universe are hydrogen and stupidity. |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:12 PM |
function OnTouch(hit) a = hit.Parent:FindFirstChild("Humanoid") skiny = hit.Parent:FindFirstChild("Skin") if (skiny == true) then return end local skin = Instance.new("Skin") skin.SkinColor = script.Parent.BrickColor skin.Parent = hit.Parent end script.Parent.Touched:connect(OnTouch) |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:15 PM |
Is that for the brick that deletes everything it touches?
The two most common elements in the universe are hydrogen and stupidity. |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:16 PM |
| No. That'll change the color of the brick to whatever color brick touches it. You want one that destroys everything? |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:19 PM |
I am going to try both
The two most common elements in the universe are hydrogen and stupidity. |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:21 PM |
game:GetService("Debris").MaxItems = 500 local s = Instance.new("Sound") s.Volume = 1 sounds = {"rbxasset://sounds\\rocket shot.wav", "rbxasset://sounds\\collide.wav"} local workspace = game.Workspace
function check(object) if object.className == "Model" and object:findFirstChild("Humanoid") == nil then for i, v in ipairs(object:getChildren()) do check(v) wait() end end if object:IsA("Part") then local soundclone = s:Clone() soundclone.SoundId = sounds[math.random(1, 2)] game:GetService("Debris"):AddItem(object, 300) soundclone.Pitch = math.random(9, 12)/10 soundclone.Parent = object delay(0.1, function() soundclone:Play() end) delay(0, function() for i = 1, 15*1.5 do local e = Instance.new("Explosion") e.Parent = workspace e.BlastPressure = 1e4*object:getMass() e.Position = object.Position object.Anchored = false object:BreakJoints() wait(1.5) end end) end end
You wanted an explosion that deletes everything, right? |
|
|
| Report Abuse |
|
|
Usering
|
  |
| Joined: 18 Aug 2012 |
| Total Posts: 10281 |
|
|
| 29 Jun 2013 09:22 PM |
while not false and 1*4/3^4 == .049382716 do end
#forgetyou |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:23 PM |
I tested that and touched it it turned my legs grey lol
The two most common elements in the universe are hydrogen and stupidity. |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:27 PM |
| ye other way around than i said it |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:27 PM |
The one that deletes is not working for me. Help?
The two most common elements in the universe are hydrogen and stupidity. |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2013 09:59 PM |
Msg = Instance.New("Message")
Msg.Text("hello") |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 Jun 2013 10:54 PM |
noob = game.Players.GRAGGER2001 noob:destroy() |
|
|
| Report Abuse |
|
|