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
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
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
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.
Welcome to the forums, that’s a good idea, I can take a look into that.
here’s ideas
Yes rank stick is NEEDED
Whats everyones obsession with rank sticks.
Next video is coming out tomorrow.
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.
Hi! Welcome to the Cookie Tech Forums!
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.
Suggestions
A simple cooking system with animations and a little wait time for the food to cook
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!
Welcome to the community, thank you for the suggestion - I will consider this, thank you!
A command that only a certain rank or above can use which changes a players leaderstat value, such as an !addpoint command
I have found a script!
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.
Thank you for 400 subs everybody!
Also: go to this link here
https://www.youtube.com/channel/UC4YZGAP6XGc4uKl-KsIsaEg
and click that red button
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
Make a tutorial on how to make a vehicle spawner like in ER:LC