Dislikes on the rise in one of my games

my game has been crashing for a week or so and I don’t understand it, there are no bugs to report and I haven’t changed anything in the game or the prices, but it’s crashing anyway.

https://www.roblox.com/games/7300536079/Aliens-Want-Money-Tycoon-NEW-BETA

2 Likes

Possible dislike botting?

You could also implement a little feedback system into your game for players to share their opinions on the game. You could understand why there are many dislikes.

3 Likes

Maybe add a suggestions ui to ask people their opnion on the game.

2 Likes

I have added a gui to send comments, I hope it will be useful, I have put it in another of my games too.

1 Like

Keep updating your game, or do what I did and see if there are new accounts (bots) joining your game:

local Webhook = "Insert your web hook here"
local HttpService = game:GetService("HttpService")
local RunService = game:GetService("RunService")

local function Send(Content)
	HttpService:PostAsync(Webhook, Content)
end

game:GetService("Players").PlayerAdded:Connect(function(Player)
	local Time
	local Message
	if RunService:IsStudio() then
		Time = os.time()
		Message = "@".. Player.Name .. " has joined Bloxy Kart at ".. os.date("%A %B %d, %Y at %I:%M:%S %p", Time).. " MST inside of Studio. ``` Account Age in days: ".. Player.AccountAge.."\n UserId: ".. Player.UserId.."\n DisplayName: ".. Player.DisplayName.. "\n MembershipType: ".. tostring(Player.MembershipType).. "```"
	else
		Time = os.time() - 21600
		Message = "@".. Player.Name .. " has joined Bloxy Kart at ".. os.date("%A %B %d, %Y at %I:%M:%S %p", Time).. " MST inside of the Roblox Client. ``` Account Age in days: ".. Player.AccountAge.."\n UserId: ".. Player.UserId.."\n DisplayName: ".. Player.DisplayName.. "\n MembershipType: ".. tostring(Player.MembershipType).. "```"
	end
	local Content = HttpService:JSONEncode({
		content = Message,
		username = "Bloxy Kart - Join Bot (v3.1)",
	})
	local Success, Error = pcall(function()
		Send(Content)
	end)
	if not Success then
		error(Error)
	end
end)

game:GetService("Players").PlayerRemoving:Connect(function(Player)
	local Time
	local Message
	if RunService:IsStudio() then
		Time = os.time()
	else
		Time = os.time() - 21600
	end
	local Content = HttpService:JSONEncode({
		content = "@"..Player.Name.. " has left Bloxy Kart on "..os.date("%A %B %d, %Y at %I:%M:%S %p", Time)..".",
		username = "Bloxy Kart - Leave Bot",
	})
	local Success, Error = pcall(function()
		Send(Content)
	end)
	if not Success then
		error(Error)
	end
end)
2 Likes

Engineers of Roblox, Needs to Know about this. Can someone? Mention a Staff?

1 Like

Either dislike botting, game bugs, not running well on bad devices, clickbait (Probably not) or because tycoons are overrated

1 Like