Cookie tech | We need your suggestions!

Welcome to the Cookie Tech Forums

You could add onto this by having like icons above the username.
Alsooo you could have there display name + username

1 Like

Hello Cookie,

I suggest you make a Full Roblox Lua Course on SkillShare. It can either be paid or free, but if it’s paid, it’ll have significant benefits such as Roblox to Discord Integration or Roblox Game to Website Integration and every basic and advanced element of Roblox Scripting. This is similar to WornOffKeys Courses and WebDevSimplified Courses. This is only a recommendation, however.

DeveloperSimple

2 Likes

This seems cool but you can find this on the interent pretty much.

can you make like rank stick where there’s a demote an promote stick and there.

3 Likes

Welcome to the forums, that’s a good idea, I can take a look into that.

1 Like

Png here’s ideas

1 Like

Yes rank stick is NEEDED

1 Like

Whats everyones obsession with rank sticks.

1 Like

Next video is coming out tomorrow.

3 Likes

Hey perhaps in a future video you can show a tutorial for rankings sticks, heres some description: if a user gets hit with a pass ranking stick they will be promoted one rank, but if there hit with a fail ranking stick they are kicked from the game.

3 Likes

Hi! Welcome to the Cookie Tech Forums! :smile:

I think ranking sticks are a good idea but I think there very common. You could probably find a video on YouTube. If Cookie did ranking sticks they would have to have something which makes it stand out.

1 Like

Suggestions
A simple cooking system with animations and a little wait time for the food to cook

1 Like

Hi Cookie! Its Me Brawl-Studios From The Stream. And Yeah I Suggest How To Fire The Roblox Concert Transition Effect With A Remote Event!

3 Likes

Welcome to the community, thank you for the suggestion - I will consider this, thank you! :slight_smile:

2 Likes

A command that only a certain rank or above can use which changes a players leaderstat value, such as an !addpoint command

1 Like

I have found a script! :smiley:

Add the leaderstats…

game.Players.PlayerAdded:Connect(function(Player)

	local Leaderstats = Player:FindFirstChild("leaderstats") or Instance.new("Folder", Player)
	Leaderstats.Name = "leaderstats"

	local PointsValue = Leaderstats:FindFirstChild("Points") or Instance.new("IntValue", Leaderstats)
	PointsValue.Name = "Points"

	end)

The command script

local GroupId = 15137503
local MinimumRankToUseCommand = 11 

game.Players.PlayerAdded:Connect(function(Player)
	if Player:GetRankInGroup(GroupId) >= MinimumRankToUseCommand then
		Player.Chatted:Connect(function(Message)
			local Words = string.split(Message, " ")

			if Words[1] == "!addpoint" then
				local NameOfPlayerToGivePoint = Words[2]
				local AmountOfPointsToGive = Words[3]

				local PlayerToGivePoint = game.Players:FindFirstChild(NameOfPlayerToGivePoint)

				if PlayerToGivePoint then
					PlayerToGivePoint.leaderstats.Points.Value = PlayerToGivePoint.leaderstats.Points.Value + AmountOfPointsToGive
				end
			end
		end)
	end
end)

Set the GroupID to your group ID and Minimum Rank to the min rank.

3 Likes

Thank you for 400 subs everybody! :star_struck:

8 Likes

Also: go to this link here
https://www.youtube.com/channel/UC4YZGAP6XGc4uKl-KsIsaEg

and click that red button :wink:

Make a tutorial on how to make a game hub for like a gameshow game. It has a feature where certain people in your group (hosts) can update the game to show times and choose which gameshow they are hosting. This globally updates for everyone to see. An example is this: [PLAY!] hub - Roblox

1 Like

Make a tutorial on how to make a vehicle spawner like in ER:LC

4 Likes