arialira0956/deepsite-project
0
1<!doctype html>2<html>3<head>4 <meta charset="utf-8" />5 <meta name="viewport" content="width=device-width" />6 <title>Robux Simulator Script</title>7 <style>8 body {9 font-family: Arial, sans-serif;10 max-width: 1000px;11 margin: 0 auto;12 padding: 20px;13 background-color: #f5f5f5;14 }15 .script-container {16 background-color: #282c34;17 color: #abb2bf;18 padding: 20px;19 border-radius: 8px;20 margin: 20px 0;21 overflow-x: auto;22 }23 pre {24 margin: 0;25 white-space: pre-wrap;26 }27 h1 {28 color: #4287f5;29 }30 h2 {31 color: #42f5a7;32 margin-top: 30px;33 }34 .function-group {35 margin-bottom: 30px;36 }37 .note {38 background-color: #fff3cd;39 color: #856404;40 padding: 10px;41 border-radius: 5px;42 margin: 15px 0;43 }44 </style>45</head>46<body>47 <h1>Robux Simulator Script</h1>48 <div class="note">49 <p><strong>Note:</strong> Copy and paste these scripts into Roblox Studio's command bar or a Script object.</p>50 </div>51 52 <div class="function-group">53 <h2>Basic Setup</h2>54 <div class="script-container">55 <pre>56-- Base Robux Simulator57local Players = game:GetService("Players")58local ReplicatedStorage = game:GetService("ReplicatedStorage")59local MarketplaceService = game:GetService("MarketplaceService")60 61local RobuxValues = {62 ["100"] = 100,63 ["500"] = 500,64 ["1000"] = 1000,65 ["5000"] = 5000,66 ["10000"] = 1000067}68 </pre>69 </div>70 </div>71 72 <div class="function-group">73 <h2>Robux Generator</h2>74 <div class="script-container">75 <pre>76-- Generate Robux for player77local function giveRobux(player, amount)78 if not player or not amount then return end79 local leaderstats = player:FindFirstChild("leaderstats")80 if not leaderstats then81 leaderstats = Instance.new("Folder")82 leaderstats.Name = "leaderstats"83 leaderstats.Parent = player84 end85 86 local robux = leaderstats:FindFirstChild("Robux")87 if not robux then88 robux = Instance.new("IntValue")89 robux.Name = "Robux"90 robux.Parent = leaderstats91 end92 93 robux.Value = robux.Value + amount94 print("Gave "..amount.." Robux to "..player.Name)95end96 97-- Command to give robux: giveRobux(game.Players:FindFirstChild("PlayerName"), 1000)98 </pre>99 </div>100 </div>101 102 <div class="function-group">103 <h2>Auto Farm System</h2>104 <div class="script-container">105 <pre>106-- Auto farm function107local autoFarmEnabled = false108 109local function toggleAutoFarm()110 autoFarmEnabled = not autoFarmEnabled111 local player = game.Players.LocalPlayer112 while autoFarmEnabled do113 wait(1)114 giveRobux(player, 100) -- Change amount as needed115 print("Auto farming... Current Robux: "..player.leaderstats.Robux.Value)116 end117end118 119-- Command: toggleAutoFarm()120 </pre>121 </div>122 </div>123 124 <div class="function-group">125 <h2>Shop System</h2>126 <div class="script-container">127 <pre>128-- Shop items129local shopItems = {130 ["Sword"] = 500,131 ["Gun"] = 1000,132 ["VIP"] = 2500,133 ["Private Server"] = 5000134}135 136-- Buy item function137local function buyItem(player, itemName)138 if not shopItems[itemName] then139 print("Item not found!")140 return false141 end142 143 local robux = player.leaderstats.Robux.Value144 if robux >= shopItems[itemName] then145 player.leaderstats.Robux.Value = robux - shopItems[itemName]146 print(player.Name.." bought "..itemName.." for "..shopItems[itemName].." Robux")147 return true148 else149 print("Not enough Robux!")150 return false151 end152end153 154-- Command example: buyItem(game.Players:FindFirstChild("PlayerName"), "VIP")155 </pre>156 </div>157 </div>158 159 <div class="function-group">160 <h2>Admin Commands</h2>161 <div class="script-container">162 <pre>163-- Admin commands164local admins = {"YourUsernameHere"} -- Add your username165 166local function isAdmin(player)167 for _,name in pairs(admins) do168 if player.Name:lower() == name:lower() then169 return true170 end171 end172 return false173end174 175local function adminGiveRobux(player, target, amount)176 if not isAdmin(player) then177 print("You're not an admin!")178 return179 end180 giveRobux(target, amount)181end182 183-- Command: adminGiveRobux(game.Players.LocalPlayer, game.Players:FindFirstChild("TargetPlayer"), 10000)184 </pre>185 </div>186 </div>187</body>188</html>