of     1   

iiPostMaster
#138561809Sunday, June 29, 2014 12:50 AM GMT

Truthfully I am making a troll script. It is not to be used anywhere except for one of my places. It is supposed to make it harder to play. Here's the script, tell me any errors I'd need to fix local a = print 'Hello world!' local b = game.workspace repeat wait(5) local a2 = clone(a) remove(a) wait(5) local a = clone(a2) wait(5) until b.terrain = nil end) b.terrain = nil says unexpected symbol near '='
iiPostMaster
#138563862Sunday, June 29, 2014 1:10 AM GMT

Bump? Please, I need some help with this!
IIlusionary
#138568390Sunday, June 29, 2014 1:53 AM GMT

maybe no space or put quotes?
Paramedic4
#138569836Sunday, June 29, 2014 2:08 AM GMT

I see a few errors: local a = 'Hello world!' local b = game.workspace repeat wait(5) local a2 = a:clone() remove(a) wait(5) local a = a2:clone() wait(5) until b.Terrain = nil end)
iiPostMaster
#138730351Monday, June 30, 2014 11:40 AM GMT

Alright, thanks! Fixed some other errors I'd made though local a = 'Hello world!' local b = game.workspace repeat wait(5) local a2 = a:clone() remove(a) wait(5) local a = a2:clone() remove(a2) until b.Terrain = nil end)
iiPostMaster
#138730649Monday, June 30, 2014 11:47 AM GMT

Okay, I just tried my edited script and it didn't work
TheLuaUser
#138731492Monday, June 30, 2014 12:06 PM GMT

local a = 'Hello world!' local b = game.workspace repeat wait(5) local a2 = a:clone() remove(a) wait(5) local a = a2:clone() remove(a2) until b.Terrain == nil end)
Paramedic4
#138830382Tuesday, July 01, 2014 4:59 AM GMT

Capitalization counts! : local b = game.Workspace
masterblokz
#138831245Tuesday, July 01, 2014 5:08 AM GMT

You don't need to capitalize workspace. Please don't give false info :(
deathbriner
#138834391Tuesday, July 01, 2014 5:45 AM GMT

You do
KOTwarrior
#138834753Tuesday, July 01, 2014 5:50 AM GMT

Cloning a string, not gonna work. The Clone() method is for Instances: http://wiki.roblox.com/index.php?title=API:Instance/Clone this is a signature: pcall(function() print([[apparently this is a string]]) end)
iiPostMaster
#138898458Tuesday, July 01, 2014 9:03 PM GMT

Okay, I know it's for instances. I meant to put on the first line a = instance.new("Message", game.workspace) a.Text = {"Hello World!"} And then for clone local a2 = clone(a) Do you get it now? I reviewed my previous messages and realized a few errors
JarodOfOrbiter
#138899656Tuesday, July 01, 2014 9:14 PM GMT

Well you can't make a string property become an array. c: a.Text = "Hello World!" Also, he said capitalization counts, and it does. I don't care if it isn't required, it is good practice, as most of the Roblox Lua things use upper camel case. Even without that, it is still good practice.
Paramedic4
#138949536Wednesday, July 02, 2014 4:58 AM GMT

For using the Clone method, you do it like this: local a2 = a:Clone()
jd678
#138951134Wednesday, July 02, 2014 5:11 AM GMT

No you don't lol game.workspace part:clone() sound:play() Don't need caps
iiPostMaster
#138989876Wednesday, July 02, 2014 4:35 PM GMT

"No you don't lol game.workspace part:clone() sound:play() Don't need caps" What the heck? I never mentioned sound at all, and never mentioned a "part" (also known as a new block) so your whole statement is rendered incorrect.

    of     1