how to return stuff on roblox

by Verda Rosenbaum DDS 8 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. ...

Part of a video titled How To *REFUND ITEMS* In Roblox 2022 - YouTube
0:44
5:02
Basically if you're on mobile. And you can either go to billing. And you can go to help pages rightMoreBasically if you're on mobile. And you can either go to billing. And you can go to help pages right here billing help pages or you can just go to selling settings.

Full Answer

How do you regenerate stuff on Roblox?

local defaultAmount = 100 -- you can imput the number manually or make it count automatically with the power of scripting local currentAmount = 0 for i, part in pairs(building:GetDescendants()) do if part:IsA("BasePart") then currentAmount = currentAmount + 1 end end if currentAmount <= defaultAmount/2 then --regen end 1 Like mobyboyy(mobyboyy)

How do you get free stuff on Roblox?

Roblox free items February 2022

  • Hovering UFO – free with Amazon Prime gaming. Login to the Roblox Prime Gaming page to get your code
  • Zara Larsson Tour Lanyard
  • Industry Baby Scrubs Pants – Lil Nas X (LNX)
  • Industry Baby Scrubs Top – Lil Nas X (LNX)
  • Golden Headphones – KSI
  • AOTP Hat – KSI

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 no Robux?

The Social Side Of Things

  • No limitation on use
  • No need to have it downloaded to your gadget
  • Instant access.

image

2. Enter your contact information

Once you’re on the Roblox support form, you’ll see a “Contact Information” header.

4. Describe your issue & submit the form

After you’ve copied the item’s URL, you need to provide it in the support form.

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.

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