Instantly find, copy, and use Roblox Lua scripts for obbys, tycoons, simulators, GUIs, tools, leaderboards, and more.
KillBrick. Script goes inside the Part.KillBrick or damage as needed.local part = workspace:FindFirstChild("KillBrick")
part.Touched:Connect(function(hit)
local humanoid = hit.Parent:FindFirstChild("Humanoid")
if humanoid then
humanoid.Health = humanoid.Health - 50 -- Change 50 for other damage values
end
end)Insert a Script in your Part and paste the code.
Door. Add a ClickDetector. Script inside the Door part.local door = workspace:FindFirstChild("Door")
door.ClickDetector.MouseClick:Connect(function(player)
door.Transparency = 0.7
door.CanCollide = false
wait(2)
door.Transparency = 0
door.CanCollide = true
end)Use for secret or animated doors.
Coin. Add leaderstats value “Coins”.local coin = script.Parent
coin.Touched:Connect(function(hit)
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
if player and player:FindFirstChild("leaderstats") then
local coins = player.leaderstats:FindFirstChild("Coins")
if coins then
coins.Value = coins.Value + 1
end
coin:Destroy()
end
end)Great for obbys, platformers, tycoons, and adventure games.
Roblox Script Generator is a free, curated library of ready-to-use Roblox Lua scripts for obbys, tycoons, simulators, GUIs, tools, leaderboards, and more. Instead of starting from a blank script, you can search for a pattern you need and copy high-quality snippets in seconds.
Scripts are written for Roblox Studio developers—not exploits—and are organized by category so beginners and intermediate coders can learn by example. Each script includes a short description, usage notes, and cleanly formatted Lua code.
Use the search bar to find specific scripts (e.g., "kill brick", "leaderstats", "gui") or browse by category using the accordion sections. Categories include Obbies, Tycoons, GUIs, Tools, Leaderboards, and more.
Each script includes a detailed description explaining what it does, where to place it in Roblox Studio, and any special requirements. Read the description carefully before using.
Click the "Copy" button to copy the Lua script code to your clipboard. Then paste it into a Script, LocalScript, or ModuleScript in Roblox Studio based on the script's instructions.
Always test scripts in Roblox Studio first before using them in live games. Most scripts are designed for development and educational purposes only.
Access a comprehensive library of 100+ free Roblox Lua scripts for obbies, tycoons, GUIs, tools, leaderboards, and more. All scripts are tested and compatible with Roblox Studio 2025.
Search scripts by keywords or browse by category. Find exactly what you need quickly with our organized script library.
Each script includes clear descriptions, usage instructions, and placement guides. Know exactly how to use each script before copying.
Copy scripts to your clipboard instantly with a single click. No manual selection or formatting needed.
All scripts are tested and updated for compatibility with the latest Roblox API and Roblox Studio 2025.
No registration required, no ads, no limitations. Use all scripts completely free for Roblox Studio development.
Copy and paste the code into a Script or LocalScript in Roblox Studio. Most scripts are designed for use in Parts, ServerScriptService, or StarterGui—read the description on each card to know exactly where to place them.
Yes, all scripts have been tested or adapted for the current Roblox API. If Roblox makes major API changes, we update the library so code examples stay relevant.
No—these scripts are for Roblox Studio development only, not exploits. We do not support or provide executors, and we recommend using scripts only in experiences you own or develop.
Visit the Roblox Documentation (formerly DevHub) for Lua scripting guides, or join the Roblox Developer Forum to ask questions and share knowledge with other creators.