amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:15 PM |
make a button
specs:
the button must be activated only by a player or object coming into contact with the pressable part of the button, and only if it is not already activated
the button must be deactivated only by there no longer being contact with the pressable part of the button by all physical game objects, and as well only if it is not already deactivated
there must be a clear way of telling if the button is activated or not(i.e. color change, door opening/closing, text, etc..)
the button must be published in an easily accessible location in an active place linked to this thread
--
if the winner has a membership, they may choose to accept 1000 robux
-amanda |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:18 PM |
so a touch event?
http://www.roblox.com/ITS-FREE-item?id=130771265&rbxp=8320118 |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:18 PM |
OG FTW. What's your UID, like 20?
And that's not so hard. But I'll let someone else do it because I'm literally that lazy. I just wanted to comment on your OGness. |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:19 PM |
amanda did you know that non bc can get 30% tax on payments? via group payouts.
http://www.roblox.com/ITS-FREE-item?id=130771265&rbxp=8320118 |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:23 PM |
i would give more money
but im fairly poor
if you are nbc, i will type you a song
related to what i interpret from your username
if you happen to be the winner |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:24 PM |
side note
i don't expect anybody to actually be able to complete this challenge
the prize is now 1500 robux |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:25 PM |
"I don't expect anybody to actually...complete this challenge"
Lol seriously?
Touched and TouchEnded are totally things now. It'd take less than 30 lines to do everything you asked with extra effects. |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:27 PM |
| What happened to you "custom" touched event that you were gonna work on a while back? This was excatly what you wanted, wan't it? |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:29 PM |
i do not make easy scripting challenges anymore
new rule: you may try as many times as you like |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:30 PM |
@morashsPeasant
I actually recently finished. This challenge is unrelated, I'm sure. |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:32 PM |
http://www.roblox.com/games/157113639/test
http://www.roblox.com/ITS-FREE-item?id=130771265&rbxp=8320118 |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:34 PM |
local function IsPressed() local parts = button:GetTouchingParts() for _, p in pairs(parts) do if not p.Anchored then return true end end return false end
/But deny, deny, denial, oh/ |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:35 PM |
do we need to post code?
http://www.roblox.com/ITS-FREE-item?id=130771265&rbxp=8320118 |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:37 PM |
| Legend, it seems your button is activated by me standing close to it but not touching it |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:38 PM |
ObjectsTouching = {}
Pad = script.Parent Pad.Touched:connect(function(hit) table.insert(ObjectsTouching,hit) end) Pad.TouchEnded:connect(function(hit) for i,v in pairs(ObjectsTouching) do if v==hit then table.remove(ObjectsTouching,i) end end end)
while wait() do -- too lazy to setup a method to detect table changing if #ObjectsTouching == 0 then Pad.BrickColor = BrickColor.new("Really red") else Pad.BrickColor = BrickColor.new("Forest green") end end
|
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:40 PM |
htt ps: // gya zo .c om/ 93afb0dfc332860982f644c24ee81af4 |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:42 PM |
>.< meshes~=collision
take off your robloxian 2.0
http://www.roblox.com/ITS-FREE-item?id=130771265&rbxp=8320118 |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2015 11:44 PM |
and the flickering is from the idle animation touching it and untouching it
http://www.roblox.com/ITS-FREE-item?id=130771265&rbxp=8320118 |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Dec 2015 11:50 PM |
♪legendary won
he is good scripter
do do do do do do lolipops♪ |
|
|
| Report Abuse |
|
|
Tyokii
|
  |
| Joined: 18 Sep 2009 |
| Total Posts: 754 |
|
|
| 23 Dec 2015 12:32 AM |
have legendary join a group that you own and them pay him the robux through there
[ insert neat siggy here ] |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 23 Dec 2015 12:52 AM |
@T
i cant just make up rules now
the prizes were already stated
and someone already won |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2015 01:13 AM |
| damn home e you jus got finessed out yo rackz homeboy!!! |
|
|
| Report Abuse |
|
|