Garfanzo
|
  |
| Joined: 24 Apr 2015 |
| Total Posts: 742 |
|
|
| 10 Sep 2015 06:40 PM |
Who wants to compete for the dumbest script?
Make the dumbest script, but it should have a point, so not a script that does nothing, but a script no one would ever need.
Good Example -
Torso = script.Parent.Parent.Character.Torso
Torso.Changed:connect(function(Explode) Explosion = Instance.new("Explosion") Explosion.Position = Torso.Position Explosion.Parent = workspace end)
This lovley script explodes you right as you spawn.
Bad Example -
while wait() do end |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 10 Sep 2015 06:41 PM |
| -.- wtf both are bad disgusting leave |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2015 06:41 PM |
Place this REGULAR script into a PART and touch THAT PART
script.Parent.Touched:connect(function(hit) hum = hit.Parent:FindFirstChild("Humanoid") if hum then head = hit.Parent.Head script.Parent.Size = Vector3.new(50000,50000,50000) script.Parent.CFrame = head.CFrame * CFrame.new(0,500000,0) weld = Instance.new("Weld") weld.Part0 = head weld.C0 = head.CFrame:inverse() weld.Part1 = script.Parent weld.C1 = script.Parent.CFrame:inverse() weld.Parent = script.Parent script.Parent.Anchored = false end end) |
|
|
| Report Abuse |
|
|
Garfanzo
|
  |
| Joined: 24 Apr 2015 |
| Total Posts: 742 |
|
| |
|
Garfanzo
|
  |
| Joined: 24 Apr 2015 |
| Total Posts: 742 |
|
|
| 10 Sep 2015 06:43 PM |
| @Soapy, hah! That one was awesome! xD |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2015 06:46 PM |
local self = script.Parent local value = 0 script.Parent.Touched:connect(function() if(self.Transparency == 1)then self.Transparency = 0.999 value = (value + 1 - value + 8 + (value*2)) print(value) self.Transparency = 0.998 end end |
|
|
| Report Abuse |
|
|
Garfanzo
|
  |
| Joined: 24 Apr 2015 |
| Total Posts: 742 |
|
|
| 10 Sep 2015 06:55 PM |
| @Vanilla, what does that one do? |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2015 07:12 PM |
script.Parent.Touched:connect(function(hit) local player = game.Players:findFirstChild(hit.Parent.Name) if player then if not player.PlayerGui:FindFirstChild("Hint") then local h = Instance.new("Hint",player.PlayerGui) h.Name = "Hint" h.Text = "You have "..tostring(#player.Backpack:children()).." items in your backpack" wait(3) h:Remove() end end end)
Tells you how many items are in your backpack when the brick this script is inserted in is touched. But you can check your backpack to see how many items you have - if you actually cared. lol |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2015 07:29 PM |
while moms spaghetti
- This is the will of Steins;Gate |
|
|
| Report Abuse |
|
|
xLink123
|
  |
| Joined: 07 Aug 2014 |
| Total Posts: 11158 |
|
|
| 10 Sep 2015 07:32 PM |
part = script.Parent trans = part.Transparency tran = trans tra = tran tr = tra t = tr
t = 1 |
|
|
| Report Abuse |
|
|
rayk999
|
  |
| Joined: 18 Feb 2011 |
| Total Posts: 4705 |
|
|
| 10 Sep 2015 07:33 PM |
@xLink i don't think that would work the way you wanted it to
"You're all idiots" |
|
|
| Report Abuse |
|
|
xLink123
|
  |
| Joined: 07 Aug 2014 |
| Total Posts: 11158 |
|
|
| 10 Sep 2015 07:34 PM |
| I didn't test it but why not? |
|
|
| Report Abuse |
|
|
rayk999
|
  |
| Joined: 18 Feb 2011 |
| Total Posts: 4705 |
|
|
| 10 Sep 2015 07:35 PM |
well, setting a variable to a property doesn't make a pointer to it, it simply copys it (unless it's a table or userdata)
local t = part.Transparency t = 1
It wouldn't change part.Transparency, it would change t
"You're all idiots" |
|
|
| Report Abuse |
|
|
Aokz
|
  |
| Joined: 02 Aug 2009 |
| Total Posts: 11284 |
|
|
| 10 Sep 2015 07:37 PM |
| insert scriptbuilder tablet script here |
|
|
| Report Abuse |
|
|
litalela
|
  |
| Joined: 30 Mar 2010 |
| Total Posts: 6267 |
|
|
| 10 Sep 2015 08:09 PM |
function createsound(parent) local w = Instance.new("Sound") w.Parent = parent w.Name = "???YOURTIMEISUP, MY TIME IS NOW???" w.SoundId = "http://www.roblox.com/asset/?id=252166378" w.Volume = 99999 w.Pitch = 1 w.Looped = true w:play() end
while wait() do spawn(function() for i, v in pairs(game.Workspace:GetChildren()) do spawn(function() while wait() do spawn(function() while wait() do local clone = Instance.new("Part", v) clone.Name = "YOU CAN'T SEE ME, MY TIME IS NOW" createsound(clone) end end) end end) spawn(function() createsound(v) end) end end) spawn(function() for _, f in pairs(game.Workspace:GetChildren()) do local clone = script:Clone() clone.Parent = f clone.Name = " AND HIS NAME IS JOHN CENAAAAAAAA " end end) end
➳Lɪᴛᴀʟᴇʟᴀ ɪs ᴍʏ ɴᴀᴍᴇ, Lᴜᴀ ɪs ᴍʏ ɢᴀᴍᴇツ |
|
|
| Report Abuse |
|
|
Saldor010
|
  |
| Joined: 20 Sep 2010 |
| Total Posts: 1035 |
|
|
| 10 Sep 2015 08:43 PM |
while true do wait(1) print("There are "..game.Players:GetChildren().." players in the game.") end |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2015 08:45 PM |
wait(0.1) script.Parent.Transparency = 0.1 wait(0.1) script.Parent.Transparency = 0.2 wait(0.1) script.Parent.Transparency = 0.3 wait(0.1) script.Parent.Transparency = 0.4 wait(0.1) script.Parent.Transparency = 0.5 wait(0.1) script.Parent.Transparency = 0.6 wait(0.1) script.Parent.Transparency = 0.7 wait(0.1) script.Parent.Transparency = 0.8 wait(0.1) script.Parent.Transparency = 0.9 wait(0.1) script.Parent.Transparency = 1 |
|
|
| Report Abuse |
|
|
Saldor010
|
  |
| Joined: 20 Sep 2010 |
| Total Posts: 1035 |
|
|
| 10 Sep 2015 08:46 PM |
| Ew, please use a for loop next time. |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2015 08:47 PM |
| it's a competition for the dumbest script |
|
|
| Report Abuse |
|
|
Saldor010
|
  |
| Joined: 20 Sep 2010 |
| Total Posts: 1035 |
|
| |
|
| |
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 10 Sep 2015 08:53 PM |
Garfanzo SoapyDishy VanillaPolarBear NetherZero LunaScripter xLink123 litalela Saldor010 DermonDarble
There, the dumbest script. |
|
|
| Report Abuse |
|
|
| |
|
|
| 10 Sep 2015 09:04 PM |
| Mine is funniest though :3 |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2015 09:52 PM |
local parent = script.Parent print(parent) paren = pare print(paren) pare = par print(pare) par = pa print(par) pa = p print(pa) p = parent print(p) |
|
|
| Report Abuse |
|
|