
Did i have to pay robux for my game? - Game Design Support
Jun 17, 2020 · Make the game pass free and test it then if it works make it cost robux GalaxySmediaCaster (GalaxySmediaCaster) June 17, 2020, 12:35pm #11
Game Pass Tool Problem - Scripting Support - Developer Forum
Jan 6, 2020 · So I made multiple game passes that gives you a gear when you buy it in the shop. But the problem is when I buy a game pass for example the speed coil game pass, it gives me every single gear that all the other game passes have. <details><summary>Here is what I mean</summary></details> <details><summary>Script In the GUI Section</summary>local mps = game:GetService("MarketplaceService") local ...
How would I make it so the game pass repeats? - Roblox
Jul 21, 2020 · Hey how can I repeat a gamepass. In other words make it so you can buy coins and it will never stop. The same mechanics from Bloxburg or Jailbreak. Please correct me on my tag/ subject as I have never asked this before. Thanks!
How far a game pass should go? - Game Design Support - Roblox
Mar 31, 2020 · This has been going around my head for a while and I was wondering if some developers could give any answers, advice or opinions when it comes to making a reasonable game pass. Here are my questions: Should features that seem like a normal person can do (sprinting, throwing objects etc.), require players to purchase a game pass? If a game pass grants a higher benefit to the purchaser, wouldn ...
Prices to gamepasses and products - Game Design Support - Roblox
Jan 12, 2020 · I’m creating a game, and since i have never managed robux, or know if something is expensive or not (30 robux for me is expensive), i don’t know what price i should set to my products in my game, right now i got 3 products that i want to add: 1000 Nubits product: Nubits are a currency used to spend stuff that doesn’t benefict you or give you a special power (Pets/Skins/Emotes), you get ...
How to make a rank giving game pass - Scripting Support - Roblox
Aug 28, 2020 · Hi, I am the owner of a cafe group and I am trying to make a game pass for a rank, but I don’t know where to even start. Once they buy the game pass, they are ranked in the group. DrKittyWaffles (x64dbg) August 28, 2020, 5:24pm
How to make a one day game pass that last 24 hours - Roblox
blokav (blokav) November 16, 2020, 10:21pm #5 When the player buys the gamepass the script should call os.time() and add 86400 to it, then save that number in a datastore.
Game pass door that works with several gamepasses - Roblox
May 11, 2020 · Use this: local MS = game:GetService("MarketplaceService") local Door = script.Parent local GPs = {4536457645,6546546546,45664} --enter gamepass ids here separated by a comma. local db = false Door.Touched:Connect(function(hit) local plr = game.Players:GetPlayerFromCharacter(hit.Parent) if plr then for i,v in pairs(GPs) do if MS:UserOwnsGamePassAsync(plr.UserId, v) then Door.Transparency = 0 ...
Admin Game pass - Scripting Support - Developer Forum - Roblox
Feb 7, 2020 · So I have decided to make a game pass that allows you to have admin commands when purchased (e.g "Owners admin, Mega admin and so on) But I am not 100% sure on how to do so. Any help will be a blessing. Thanks for reading…
Gamepass script - Scripting Support - Developer Forum - Roblox
Apr 19, 2020 · Hi I’m new to scripting. I have tried a lot of things but still I can’t. If someone has a certain game pass it gives more energy to certain tools. But if someone has the game pass, the whole server gets more energy. And I want only the player who has the game pass to get more energy. This is my script. local mps = game:GetService("MarketplaceService") local Items = game.ServerStorage.Items ...