|
| 05 Dec 2012 08:15 PM |
| whenever i try to script, it just says script heap. . . help |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 05 Dec 2012 08:17 PM |
| The output only says "script heap" |
|
|
| Report Abuse |
|
|
|
| 05 Dec 2012 08:23 PM |
| Number 1 rule of the forum: POST THE SDIJGDDFGDGHAIFS SCRIPT. |
|
|
| Report Abuse |
|
|
|
| 05 Dec 2012 10:09 PM |
while true do game.Workspace.Part.Transparency = 1 wait(5) game.Workspace.Part.Transparency = 0 end |
|
|
| Report Abuse |
|
|
| |
|
Monkey727
|
  |
| Joined: 12 Jan 2009 |
| Total Posts: 969 |
|
|
| 06 Dec 2012 05:18 AM |
Actually, Something is wrong. Nothing to do with the "script heap" though, I've never heard of anything like that, A script in your place might be printing it perhaps.
while true do game.Workspace.Part.Transparency = 1 wait(5) game.Workspace.Part.Transparency = 0 end This is just like this:
wait(5) game.Workspace.Part.Transparency = 0 game.Workspace.Part.Transparency = 1
Since it repeats, The transparency is always set to 1.
while true do game.Workspace.Part.Transparency = 1 wait(5) game.Workspace.Part.Transparency = 0 wait(5) end |
|
|
| Report Abuse |
|
|