Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Whats wrong with this script?

Asked by
jobruin 10
11 years ago
01function joel(hit)
02 
03    hit.Transparency = 1
04 
05end
06 
07script.Parent.Touched:connect(joel)
08 
09wait(5)
10 
11game.Workspace.Part:Clone()
12 
13 
14function og(sup)
15    wait(5)
16 
17    sup.Transparency = 0
18 
19    script.Parent.Touched:connect(og)
20end

So what I want it to do is if something hits the brick it goes transparent first. Second it clones the same brick than the brick that is cloned gets touched by something it will change it's transparent to 0

2 answers

Log in to vote
-1
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
11 years ago
1script.Parent.Touched:connect(function(hit)
2hit.Transparency = 1
3wait(5)
4clne = script.Parent:Clone()
5clne.Parent = game.Workspace
6clne.Touched:connect(function(hitt)
7hitt.Transparency = 0
8end) end)

This would do what you're asking, what you were doing was specifying the connection statement before you ended the function..

1script.Parent.Touched:connect(og)
2end

Hope it helped

0
Can you explain to me why its clne? jobruin 10 — 11y
0
As in 'Clone' but without the 'o' ~ clne which represents the clone of the script's Parent Goulstem 8144 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

You need to call the function after the end. Not before it.

Answer this question