RbxDream - Robux Earning Rewards Website
Coming Soon
Current repo not stable.
This is an open source Robux rewards site.
Understanding Core Concepts
- The main file is
settings.json
, located in the root directory. The website is build and rendered by it's content - This website is made in Laravel, and I'm no laravel pro.
- You are NOT allowed to sell this source code.
You are not allowed to delete any file that is purposely made to credit the owner, or any file that includes comments telling you not to delete it.
Config
Here are things you need to edit in the .env
file. You'll find these thigs in the .env
change them and try running the app, you're good to go if if works fine.
APP_DEBUG=false
Also run these commands in the shell while rooted in the source code directory,
# Install needed Node modules
npm install
# Install needed Vendor packages
composer install
Digging Deeper
- The UI is made with Tailwinds, really easy to change/edit.
- Server side rendering, minimal useage of javascript.
- Responsive Design.
- Editable UI(by
settings.json
)
This is what the settings.json
looks like(for now).
{
"reviews": {
"enabled": true,
"title": "Not convinced yet?",
"description": "Here is a word from our users and the founders of this website.",
"data1": [
{
"description": "Hey I'm Jareer, I helped develop ${website_name}. Here at ${website_name} we offer the best & the easiest offers.",
"user": {
"title": "Founder",
"username": "JUB0T",
"userId": "1877006416"
}
},
{
"description": "Here at ${website_name} we try our best to provide our users with the best service.",
"user": {
"title": "Co-founder",
"username": "Renethis32",
"userId": "1329108008"
}
}
],
"data2": [
{
"description": "At first I thought ${website_name} would be like other fake Robux earnig websites, but I was wrong, ${website_name} actually paid me!",
"user": {
"title": "User",
"username": "kieran6k",
"userId": "3310187664"
}
},
{
"description": "I can't beleive how good ${website_name} is.",
"user": {
"title": "User",
"username": "Viki_YTpro",
"userId": "1386358971"
}
}
]
},
"website": {
"name": "RbxDream",
"owner": "Jareer",
"roblox": {
"username": "JUB0T",
"userId": "1877006416"
},
"admin": {}
},
"offerwalls": [
{
"name": "Toro",
"url": "https://wall.adgaterewards.com/oKiaqw/${userId}"
},
{
"name": "AdGate",
"url": "https://wall.adgaterewards.com/oKiaqz/${userId}"
}
],
"uis": {
"showSupportButton": true,
"showTransactions": true,
"profilePageBackground": "/images/profilePageImage.jpg"
},
"reffer": {
"enabled": true,
"message": "Connect with us via social media.",
"instagram": {
"show": true,
"url": "https://instagram.com/jub0t",
"tip": "Follow us on instagram"
},
"discord": {
"show": true,
"url": "https://discord.com/users/818987954378637342",
"tip": "Get free promocodes on our discord"
},
"facebook": {
"show": true,
"url": "https://facebook.com/group/something?id=1",
"tip": "Join our group to get with the community"
},
"twitter": {
"show": true,
"url": "https://twitter.com/Jareer12_",
"tip": "Follow us on twitter for updates"
},
"mail": {
"show": true,
"mail": "[email protected]",
"tip": "Send us a mail regarding any problem"
}
}
}