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

Game stuck in No-clip mode?

Asked by 8 years ago

I know this isn't entirely about scripting, but I've been asking a lot of developers, but none of them seem to know. So you guys are basically the last people I could come to.

So here's my problem: Every time I join my game, it is for some reason stuck in a no-clip sort of state. I can see the leaderboard, the teams, but not my avatar. I can also click buttons, but not go in vehicles. Though embarrassing enough, I used one of ROBLOX's gameplay themes and started from there. The theme is the "FFA Area" one. When I started to develop on it, I noticed some script which impeded a character from playing until at least two or more players were in the game, and so I removed it. That's when this all happened.

So I'm guessing it is all related, but I have no idea. Once again, I'm sorry this isn't entirely code-related.

[GAME] http://www.roblox.com/games/382880266/Something-I-guess-WIP-DEV#!/store

1 answer

Log in to vote
1
Answered by
robocu3 30
8 years ago

My immediate assumption is that a script is disabling a client's ability to spawn the character, or the character is being removed immediately after being created and the character property is being set to nil, though they'd virtually result in the same general conclusion. Is any of the UI visible? If I'm right, the CharacterAutoLoads property of the Players service is probably disabled. Run the game in studio and see if that's the case by opening the Explorer and the Properties tab, and clicking Players. CharacterAutoLoads should NOT be checked. This doesn't very well narrow down the source, I don't imagine, but if that's the case, you can easily find the culprit by pressing Ctrl+Shift+F and typing in .CharacterAutoLoads. Let me know if this is any assistance to you and comment if you have anything else you need clarified.

0
Thanks, but CharacterAutoLoads in "Players" isn't checked, so it can't be that. :/ deduardo9 0 — 8y
0
Though, could it have anything to do with StarterPlayerScripts? I dont imagine so, but who knows? deduardo9 0 — 8y
0
If it isn't checked, it's definitely that. My apologies for wording it badly, in the case of your problem, it shouldn't be checked, because that's the only thing that makes sense. Try Ctrl+Shift+F like I suggested, if that doesn't help get back to me and I'll try to help you further. robocu3 30 — 8y
0
Okay thanks, I'll look into it tomorrow. deduardo9 0 — 8y
View all comments (3 more)
0
There really isn't anything in the StarterPlayerScripts so if you know anyone who can help me, please ask! deduardo9 0 — 8y
0
Perhaps a script isn't setting it at all? Is it checked in studio mode or unchecked in both? If it's unchecked in both, it's probably just an honest mistake. Check it :P robocu3 30 — 8y
0
k thx deduardo9 0 — 8y
Ad

Answer this question