|
| 20 Jun 2013 04:05 PM |
I am trying to make a stop watch for specific people to use. Any one know a script for this?!
like a permission script to place into tools/ weapons!? :((( |
|
|
| Report Abuse |
|
|
1waffle1
|
  |
| Joined: 16 Oct 2007 |
| Total Posts: 16381 |
|
| |
|
|
| 20 Jun 2013 04:21 PM |
| http://www.roblox.com/Just-report-it-item?id=119691298 |
|
|
| Report Abuse |
|
|
|
| 20 Jun 2013 04:21 PM |
Silly waffle learn from this :
http://www.roblox.com/Just-report-it-item?id=119691298 |
|
|
| Report Abuse |
|
|
coplox
|
  |
| Joined: 07 Jun 2008 |
| Total Posts: 3252 |
|
|
| 20 Jun 2013 04:21 PM |
| http://www.roblox.com/Just-report-it-item?id=119691298 |
|
|
| Report Abuse |
|
|
nairod7
|
  |
| Joined: 26 Mar 2010 |
| Total Posts: 869 |
|
|
| 20 Jun 2013 04:23 PM |
| http://www.roblox.com/Just-report-it-item?id=119691298 |
|
|
| Report Abuse |
|
|
|
| 20 Jun 2013 04:25 PM |
| http://www.roblox.com/Just-report-it-item?id=119691298 |
|
|
| Report Abuse |
|
|
jasondee1
|
  |
| Joined: 26 Jul 2008 |
| Total Posts: 8002 |
|
|
| 20 Jun 2013 10:14 PM |
function wrongtopic() wait(1) local hint = instance new("Hint") hint.Parent = game.Workspace hint.Text = "GET OUT" wait(5) hint.Text = "Your in the wrong topic" wait(5) end end
Put this in a script in workspace and press play :) |
|
|
| Report Abuse |
|
|
dekkonot
|
  |
| Joined: 22 Dec 2010 |
| Total Posts: 6685 |
|
|
| 20 Jun 2013 10:16 PM |
http://www.roblox.com/Just-report-it-item?id=119691298
~ Non simpliciter Latinam legere ~ |
|
|
| Report Abuse |
|
|
|
| 20 Jun 2013 10:20 PM |
| Great job not explaining the problem and asking for people to make stuff for you. |
|
|
| Report Abuse |
|
|
| |
|
As8D
|
  |
| Joined: 24 Dec 2009 |
| Total Posts: 2907 |
|
|
| 21 Jun 2013 05:23 PM |
http://www.roblox.com/Secret-For-Waffle-item?id=119691298
Oh... sorry, I want to solv' diz' c: -- on topix --
Hm, here's something that MIGHT help for a start/pause/stop clock (too lazy to make it 'good' nor quite efficient).
local clock = {}
clock.status = {}
clock.start = function(time, func, id) id = id or 0 if clock.status[id or 0] then return end clock.status[id] = true if not (time and type(time) == "number") then print("No time set!") return end if not (func and type(func) == "function") then print("No function to be executed!" return) end local t = math.ceil(time) local f = math.floor coroutine.wrap(function() while t > 0 and clock.status[id] do if clock.status[id] == "pause" then repeat wait() until clock.status[id] ~= "pause" end end func({hour = f(t / 3600), minute = f(t / 60) % 60, second = t}) wait(1) t = t > 0 and t - 1 or t + 1 end end)() end
clock.stop = function(id) id = id or 0 clock.status[id] = nil end
clock.pause = function(id) id = id or 0 clock.status[id] = "pause" end
-- EXAMPLE
function showClock(timetable) print("Hours:", timetable.hour) print("Minutes:", timetable.minute) print("Seconds:", timetable.second) if not workspace:FindFirstChild("Timer") then Instance.new("StringValue", workspace).Name = "Timer" end workspace.Timer.Value = timetable.hour .. ":" .. timetable.minute .. ":" .. timetable.second end
clock.start(600, showClock) wait(10) clock.pause() print("Paused!") wait(2) clock.start() wait(3) clock.stop() print("Stopped!")
- END OF EXAMPLE
- As, hurhur, burn my fiddlestick. |
|
|
| Report Abuse |
|
|
As8D
|
  |
| Joined: 24 Dec 2009 |
| Total Posts: 2907 |
|
|
| 21 Jun 2013 05:24 PM |
Also:
I'll never check stuff I post as solutions for others... so I can't guarantee that it'll work... always.
- As, new siggy. The other one crumbled. |
|
|
| Report Abuse |
|
|
|
| 21 Jun 2013 06:02 PM |
http://www.roblox.com/Secret-For-Waffle-item?id=119691298
|
|
|
| Report Abuse |
|
|
AxetheAce
|
  |
| Joined: 25 Sep 2010 |
| Total Posts: 383 |
|
|
| 21 Jun 2013 06:16 PM |
| I'd wish people will stop being jerks and just help him. I would. I could say a lot of mean things to all of you but I'll just hold it back for now. |
|
|
| Report Abuse |
|
|
1waffle1
|
  |
| Joined: 16 Oct 2007 |
| Total Posts: 16381 |
|
|
| 21 Jun 2013 06:38 PM |
oh look reporting it didn't work.
well then. how about that. |
|
|
| Report Abuse |
|
|
|
| 21 Jun 2013 07:08 PM |
| Is this forum really only for Lua? |
|
|
| Report Abuse |
|
|
Fedorakid
|
  |
| Joined: 17 Jul 2010 |
| Total Posts: 7079 |
|
|
| 21 Jun 2013 07:13 PM |
| http://www.roblox.com/unnamed-item?id=118311535 |
|
|
| Report Abuse |
|
|