can u return stuff on roblox

by Ms. Dayna Veum IV 9 min read
image

How to refund items in Roblox

  1. Go to the Roblox support form. The first step is to go to the Roblox support form. ...
  2. Enter your contact information. Once you’re on the Roblox support form, you’ll see a “Contact Information” header. ...
  3. Copy the item’s URL. ...
  4. Describe your issue & submit the form. ...

In general, we are not able to offer a refund for items purchased within an experience. All purchases with Robux requires users to click on a confirmation box as a precaution against making accidental purchases and many experiences also have a confirmation window for purchases with their in-experience's currency.

Full Answer

Can You refund Robux on Roblox?

Roblox does not offer a possibility of a refund or exchange of Robux at this time. They do say that some exceptions can be made at their own discretion. This means that even though there is no obligation for Roblox to refund anything, they are willing to take some cases into consideration.

How to get free stuff on Roblox?

Roblox players can get free catalog items by going to the Avatar Shop and adding a filter. From the filter menu, select the free button under the price section. The results will then display only free items, and you see see what free catalog items the Avatar Shop has in stock for you.

How to resell items on Roblox?

To sell your clothing creations:

  • You will need to have a membership and have created an item of clothing. ...
  • Go to the Create section located in the blue bar at the top of the site.
  • Click on either Shirts, Pants, or T-Shirts in the left column, depending on your design.
  • Click the gear to the right of the item you want to sell.
  • Click Configure, then select Sales.

More items...

How can you get your Robux back?

This is what you need to do to request a Roblox refund online:

  • Log into your account
  • Open the details of the item you want to get refunded for
  • Copy the name of the item
  • Find the developer’s account
  • Message them with Refund and the name of the item

image

Returning Values

The keyword return can be used to take information from a function, and allow it to be used wherever the function was called originally. If your friend asked you for something in another room, you would go get it and bring it back. When a function is called, the script goes to the function, and then returns with a value.

How return Works

return ends the function, causing the script to go back to where the function was called originally. This allows a returned value of one function to be used inside a second function. Test this out with print ().

Storing Returned Values

Variables can also be used to call functions and store the values received from a function. In this case, a variable will be used to run makeCake () and receive a cake in game.

Returning Multiple Values

Sometimes you may want multiple values returned from a function. An in-game example would be returning how many wins, losses, and ties, a player has.

image