of     1   

nairb
#107831331Wednesday, July 31, 2013 10:32 PM GMT

Now: NPC: *Dies* *Spawns, then dies* *Spawns, then dies* X999 After this idea: NPC: *Dies* *Spawns, perfectly ok.*
YummyGurlz
#107831544Wednesday, July 31, 2013 10:34 PM GMT

I don't notice any problem with NBCs respawning... o3o
trajing
#107831604Wednesday, July 31, 2013 10:34 PM GMT

# Fix This isn't a ROBLOX-Built feature. Do it yourself.
CrAzYH3xD
#107831965Wednesday, July 31, 2013 10:37 PM GMT

This is possible to be fixed without the help of the ROBLOX staff c:
Misplace
#107832185Wednesday, July 31, 2013 10:39 PM GMT

Learn to script better. ;p ☓~MP~☓
Jolly3DSlover
#107833296Wednesday, July 31, 2013 10:47 PM GMT

@Yummy Nairb was talking about the problem that NPCs die at the right time when they spawn.
nairb
#107833441Wednesday, July 31, 2013 10:48 PM GMT

@"Scriptable" The rule of this forum is, not everyone knows how to script. Unless ROBLOX puts in an "English to Lua Translator", then not everyone knows how to script.
nairb
#107835621Wednesday, July 31, 2013 11:06 PM GMT

@Yummy *NPC, Or Non-Player Character.
Misplace
#107835859Wednesday, July 31, 2013 11:09 PM GMT

English to lua translator? LOL. Lua is a programming language not a language you can talk and speak into. It isn't too hard to learn lua, just find the right book. ☓~MP~☓
nairb
#107836689Wednesday, July 31, 2013 11:15 PM GMT

@Misplace Lua is still a language, no matter how you say it. And ROBLOX did toss up the idea of an "English to Lua" translator. For example, let's say I have a respawn script as it stands now for NPCs. A user wants this: name="Humanoid" robo=script.Parent:clone() while true do wait(0.0000000000000000000000000000000000000000000000000000000001) if script.Parent.Humanoid.Health<1 then robot=robo:clone() robot.Parent=script.Parent.Parent robot:makeJoints() script.Parent:remove() end end But, he would have to learn another language in order to make that a reality. In a world affected by an "English to Lua Translator", it would work like this: User: "A script in which the NPC dies and comes back to life in 0.01 seconds." It would create this: name="Humanoid" robo=script.Parent:clone() while true do wait(0.01) if script.Parent.Humanoid.Health<1 then robot=robo:clone() robot.Parent=script.Parent.Parent robot:makeJoints() script.Parent:remove() end end See? No issue, and he learns how the words work in Lua when said in English. But that's not the issue we are talking about here. We are talking about NPCs dying in a heartbeat as soon as they spawn.

    of     1