Jules627
|
  |
| Joined: 06 Feb 2009 |
| Total Posts: 4940 |
|
| |
|
|
| 25 Oct 2012 03:29 PM |
try this
a = game.Workspace.NAMEOFPART.Humanoid.Health
b = game.Workspace.NAMEOFPART
while true do
b.Name= a
wait(.1)
end
you need a wait and an end |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 25 Oct 2012 03:30 PM |
Why do you have random else statement? You never used an if statement.
There's no end for the while loop.
Didn't even seem like you tried. |
|
|
| Report Abuse |
|
|
|
| 25 Oct 2012 03:44 PM |
I know the script. Its this: a = game.Workspace.NAMEOFPART.Humanoid.Health
b = game.Workspace.NAMEOFPART
while true do
b.Name= a
wait(.1)
end
you need a wait and an end
|
|
|
| Report Abuse |
|
|
|
| 25 Oct 2012 04:01 PM |
The problem:
You added :( at the end of the script which makes it sensor to fo nothing.
fixed:
a = game.Workspace.NAMEOFPART.Humanoid.Health
b = game.Workspace.NAMEOFPART
while true do
b.Name = a
else
print("Script is not working." |
|
|
| Report Abuse |
|
|
| |
|
Xnite515
|
  |
| Joined: 18 Feb 2011 |
| Total Posts: 22763 |
|
|
| 25 Oct 2012 04:11 PM |
@Bumpy
Wrong.
It's still in the string. |
|
|
| Report Abuse |
|
|