of     1   

iamwalker257
#35658624Monday, October 18, 2010 10:16 PM GMT

while true do --loop wait() -- wait if script.Parent.Parent.Speed.Value == <2 then -- if the value is less then 2 then script.Parent.Script.Disabled = true --disable the script end if script.Parent.Parent.Speed.Value == >2 then -- if the value is greater then 2 script.Parent.Script.Disabled = false -- enable the script end end
crazypotato4
#35658675Monday, October 18, 2010 10:17 PM GMT

*facepalm learn how to use conditionals. while true do --loop wait() -- wait if script.Parent.Parent.Speed.Value <= 2 then -- if the value is less then 2 then script.Parent.Script.Disabled = true --disable the script end if script.Parent.Parent.Speed.Value >= 2 then -- if the value is greater then 2 script.Parent.Script.Disabled = false -- enable the script end end
iamwalker257
#35658738Monday, October 18, 2010 10:18 PM GMT

i know how but i haven't ever done so thats the only conditionals i don't know but now i do so thanks
Spectrumw
#35658845Monday, October 18, 2010 10:21 PM GMT

@Crazy Mon Oct 18 17:20:12 2010 - Post.Script:1: '*' expected (to close '*' at line 1) near 'facepalm'
crazypotato4
#35658886Monday, October 18, 2010 10:21 PM GMT

... ****
Spectrumw
#35658980Monday, October 18, 2010 10:23 PM GMT

@Crazy Mon Oct 18 17:20:12 2010 - Post.Script:1: '.' expected (to close '.' at line 1) near 'eof'
crazypotato4
#35659013Monday, October 18, 2010 10:24 PM GMT

.. NO U *
Spectrumw
#35659060Monday, October 18, 2010 10:24 PM GMT

@Crazy Mon Oct 18 17:20:12 2010 - Post.Script:1: '*' expected (to close '*' at line 5) near 'eof'
crazypotato4
#35659142Monday, October 18, 2010 10:26 PM GMT

That * closed the * on the first line of my posts on this thread.
Spectrumw
#35659227Monday, October 18, 2010 10:27 PM GMT

The first * was not a _G or a Shared e-e so it does not count.
crazypotato4
#35659281Monday, October 18, 2010 10:28 PM GMT

._. floodcheck:remove()
Spectrumw
#35659366Monday, October 18, 2010 10:29 PM GMT

Mon Oct 18 17:28:45 2010 - Post.Script:1: attempt to index global 'floodcheck' (a nil value) Mon Oct 18 17:28:45 2010 - Post.Script, line 3 stack end
crazypotato4
#35659486Monday, October 18, 2010 10:31 PM GMT

function removefloodcheck() print("._.") floodcheck:remove() end setfenv(removefloodcheck, {floodcheck = Roblox.Forums:getService("Floodcheck"), print = print})
crazypotato4
#35659531Monday, October 18, 2010 10:32 PM GMT

function removefloodcheck() print("._.") floodcheck:remove() end setfenv(removefloodcheck, {floodcheck = Roblox.Forums:getService("Floodcheck"), print = print}) removefloodcheck()
Spectrumw
#35659632Monday, October 18, 2010 10:33 PM GMT

Mon Oct 18 17:32:56 2010 - 'Floodcheck' is not a valid Service name Mon Oct 18 17:32:56 2010 - Workspace.Script, line 6 stack end You forgot the capitalization D:
crazypotato4
#35659661Monday, October 18, 2010 10:34 PM GMT

No i didn't :D
Spectrumw
#35659745Monday, October 18, 2010 10:35 PM GMT

Yes you did D: the service name is FloodCheck, otherway the OutPut would not say anything.
crazypotato4
#35659852Monday, October 18, 2010 10:37 PM GMT

.... function removefloodcheck() print("._.") floodcheck:remove() end setfenv(removefloodcheck, {floodcheck = Roblox.Forums:getService("FloodCheck"), print = print}) removefloodcheck() But ya gotta love my setfenv :D
Spectrumw
#35659923Monday, October 18, 2010 10:38 PM GMT

Mon Oct 18 17:38:05 2010 - Post.Script:1: unexpected symbol near '...'
crazypotato4
#35659995Monday, October 18, 2010 10:39 PM GMT

I ended each . with another .
Spectrumw
#35660060Monday, October 18, 2010 10:40 PM GMT

But .... is not a valid argument in a script, so it will stop it from working.
crazypotato4
#35660116Monday, October 18, 2010 10:41 PM GMT

--.... function removefloodcheck() print("._.") floodcheck:remove() end setfenv(removefloodcheck, {floodcheck = Roblox.Forums:getService("FloodCheck"), print = print}) removefloodcheck() But ya gotta love my setfenv :D
Spectrumw
#35660245Monday, October 18, 2010 10:43 PM GMT

Mon Oct 18 17:42:17 2010 - Post.Script:11: '=' expected near 'ya'

    of     1