Kensai666Join Date: 2011-07-21 Post Count: 1463 |
I haven't updated my game for a week, everything works fine, I go to my testing place, so it starts a new server, and its broken. Did ROBLOX break something recently...? I just shut down all the servers at my game, and all of a sudden its broken. WHAAAAAAAAAT? |
|
JuanpansJoin Date: 2009-01-12 Post Count: 8302 |
|
|
|
Kensai666Join Date: 2011-07-21 Post Count: 1463 |
EROIJEWAOIJOIJOIEWAJRIWOJRWJAOIRJIWEJ
oh and hi mcvoss, hows shooty? ;) |
|
AokzJoin Date: 2009-08-02 Post Count: 11284 |
Erm, I wonder what the update was.. |
|
|
The Test version of Kohls realm is broken aswell. |
|
|
Fix it please Kensai. This is one of my favorite games. |
|
Bebee2Join Date: 2009-05-17 Post Count: 3985 |
Tell us what broke down and we can come up with a new script. |
|
|
Wtf jus happened? i was gonna play yur game then i saw it was locked.Wat happened plz explain in great details qq. |
|
Kensai666Join Date: 2011-07-21 Post Count: 1463 |
Do you not get that it's roblox's fault? |
|
WolaterJoin Date: 2011-03-06 Post Count: 2786 |
woooooooot |
|
|
wat? thanks a lot roblox.... u shut down the best game |
|
XandalfJoin Date: 2011-07-18 Post Count: 4416 |
I'm starting to think people on post stuff on here because a famous person posted the thread. |
|
magnaliteJoin Date: 2009-10-18 Post Count: 2467 |
Just explain whats wrong? And if you people are just complaining and not helping then don't post. |
|
Kensai666Join Date: 2011-07-21 Post Count: 1463 |
I literally haven't touched the game at all, and I opened the place up, and saved it to the testing place, (without changing anything) and then the testing place doesnt work. I then shut down the servers in the main game, and the game doesn't work, and the game still says (Updated 1 Week Ago) It doesnt say that now, because I just shut it down. |
|
magnaliteJoin Date: 2009-10-18 Post Count: 2467 |
Yeah that doesn't help. Give me some form of output and code snippets. |
|
magnaliteJoin Date: 2009-10-18 Post Count: 2467 |
Or even explain how it is broken. Just saying it's broken doesn't help either. |
|
Kensai666Join Date: 2011-07-21 Post Count: 1463 |
Are you not even getting what I'm saying? It's just completely stopped working when I've changed nothing. |
|
Kensai666Join Date: 2011-07-21 Post Count: 1463 |
It seems anything to do with cframe, is broken.
repeat wait() until script.Parent.Parent.Parent:IsA("Player") and script.Parent.Parent.Parent.Character and script.Parent.Parent.Parent.Character:findFirstChild("Torso")
script.Parent.Parent.Parent.Character:findFirstChild("Torso").CFrame = CFrame.new(game.Workspace.Town.Sky.Position + Vector3.new(math.random(-26,26),3,math.random(-26,26)))
^ That doesn't work. |
|
Alex645caJoin Date: 2009-02-02 Post Count: 2531 |
Yeah, I'm having the same problem with three different methods of teleportation in my game. Looks like roblox broke CFraming characters... (In my game I can get it to work if I use a character morph, but idk about your game.) |
|
Bebee2Join Date: 2009-05-17 Post Count: 3985 |
while wait() do
if script.Parent.Parent.Parent:IsA("Player")
and script.Parent.Parent.Parent.Character and
script.Parent.Parent.Parent.Character:findFirstChild("Torso") then
break
end
a = game.Workspace.Town.Sky.Position + Vector3.new(math.random(-26,26),3,math.random(-26,26))
script.Parent.Parent.Parent.Character:findFirstChild("Torso"):MoveTo(Vector3.new(a)
-- try this...
|
|
Bebee2Join Date: 2009-05-17 Post Count: 3985 |
-- Don't use the other one
while wait() do
if script.Parent.Parent.Parent:IsA("Player")
and script.Parent.Parent.Parent.Character and
script.Parent.Parent.Parent.Character:findFirstChild("Torso") then
break
end
a = game.Workspace.Town.Sky.Position + Vector3.new(math.random(-26,26),3,math.random(-26,26))
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(a) -- If it's a local script, use this.
|
|
magnaliteJoin Date: 2009-10-18 Post Count: 2467 |
Posting what the error actually is would help greatly. Or explaining what is actually happening. "It's completely broken" is not helpful in the slightest. Explain what happens when you join the game. |
|
Bebee2Join Date: 2009-05-17 Post Count: 3985 |
:MoveTo(Vector3.new(#,#,#) > :FindFirstChild("Torso").CFrame.new(#,#,#) |
|
Kensai666Join Date: 2011-07-21 Post Count: 1463 |
uhhh, what bebee? o-o |
|