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

Script preventing character from loading?

Asked by 11 years ago

I made a custom chat script, but every time i enter the game to test it it stays on "Waiting for Character," and I'm wondering if theres something in the script thats causing it.

Script:

01function UpdateOldLabels(Parent)
02    for i,v in pairs(Parent:GetChildren()) do
03        if v.Name:sub(1,4):lower() == "line" then
04            local LineNumber = v.Name:sub(5)
05            if LineNumber == "12" then
06                v:Destroy()
07            else
08                v.Name = "line"..tostring(tonumber(LineNumber) + 1)
09                v.Position = v.Position - UDim2.new(0,0,0,15)
10            end
11        end
12    end
13end
14 
15game:GetService("Players").PlayerAdded:connect(function(player)
View all 38 lines...

3 answers

Log in to vote
3
Answered by
Sublimus 992 Moderation Voter
11 years ago

There is nothing in this script to cause that, go to players in studio, and make sure that the 'CharacterAutoLoads' option is checked.

Ad
Log in to vote
0
Answered by
yurhomi10 192
11 years ago

scripts start before the player enters, therefore the script doesnt find any players so it wont work

try this

1repeat
2wait()
3until player
0
It's in a PlayerAdded event TheGuyWithAShortName 673 — 11y
Log in to vote
-3
Answered by 11 years ago

HA! He took it from my Custom Chat that's why its not loading he doesn't have a GUI that has a Frame inside to make it work that's why its killing you because its not a correct script.

He clearly just took it from my Script that I asked a question for

0
He took it but he changed some stuff up to make it that he made it and thats why its killing him EmperorF 0 — 11y
0
actually i took it from the wiki...and its not killing me. the game isnt loading my character VentusWind78 25 — 11y
1
It was taken from the Wiki. The script was created by Virtualdarks and improved by myself. Please do not make false claims. Articulating 1335 — 11y
0
Looks like mine EmperorF 0 — 11y

Answer this question