Mini Tools
196
97
75
Released
8mo ago
100% Free

3,197
909
853
Released
1y ago
100% Free
Carlos Ponce
🙏 7 karma
Apr 20, 2025
@e7naa
This is a fantastic tool. It helps me a lot to illustrate my poems and short stories.
211
99
74
Released
9mo ago
100% Free
323
127
92
Released
8mo ago
100% Free
It follows the prompt precisely and it even offers a free 4x upscaler ;-) THX
Transform portraits into mesmerizing geometric abstracts.
Open
252
118
82
Released
8mo ago
100% Free
681
167
155
Released
10mo ago
100% Free
311
59
50
Released
1y ago
100% Free
562
132
121
Released
11mo ago
100% Free
340
132
95
Released
9mo ago
100% Free
435
137
109
Released
10mo ago
100% Free
515
177
149
Released
2mo ago
100% Free
It's good, needs a lot of training but the potential is clearly visible. Dev well done
166
115
78
Released
9mo ago
100% Free
41,703
7,809
7,105
Released
1y ago
100% Free

629
314
247
Released
7mo ago
100% Free
Very very nice it’s so detailed and so annoying, I like it much, cause I love cooking it’s my favourite hobby, to cook for friends and family
398
126
121
Released
1mo ago
100% Free
429
201
161
Released
10mo ago
100% Free
1,712
428
409
Released
1y ago
100% Free
464
251
193
Released
10mo ago
100% Free
Transform ideas into vintage engineering blueprints.
Open
678
277
198
Released
10mo ago
100% Free
3,206,728
456,332
468,243
Released
10mo ago
100% Free
I think it's the best image generator I ever found on the net. It gives more accurate image according to the prompt. And thank you for keeping it for free.
335
130
105
Released
8mo ago
100% Free
229
80
70
Released
1y ago
100% Free
Transform any image into stunning artistic masterpieces.
Open
185
52
53
Released
1mo ago
100% Free

553
242
213
Released
3mo ago
100% Free
412
98
70
Released
9mo ago
100% Free
583
161
128
Released
9mo ago
100% Free
2,098
556
481
Released
9mo ago
100% Free
2,210
709
611
Released
9mo ago
100% Free
426
156
117
Released
9mo ago
100% Free
839
264
217
Released
9mo ago
100% Free
Effortlessly craft Roblox doors with AI-powered Lua scripts.
Open
1,284
312
322
Released
9mo ago
100% Free
Here is a script for a sniper rifle in Roblox that includes scope functionality and bullet drop simulation:
```lua
-- SniperRifleScript.lua
-- Services
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
-- Variables
local sniperRifle = script.Parent -- assume the script is a child of the sniper rifle model
local player = Players.LocalPlayer
local character = player.Character
local humanoid = character:FindFirstChild("Humanoid")
local camera = workspace.CurrentCamera
local scopeOverlay = sniperRifle:FindFirstChild("ScopeOverlay") -- a GUI element to display the scope
local fireMode = "Single" -- can be "Single" or "Auto"
local bulletSpeed = 1000 -- meters per second
local bulletDrop = 0.5 -- gravity multiplier
local ammo = 10 -- starting ammo
local reloadTime = 3 -- seconds
local scopeZoom = 10 -- zoom multiplier
-- Functions
local function shoot()
-- Check if the player has ammo
if ammo > 0 then
ammo -= 1
sniperRifle.Ammo.Value = ammo
-- Calculate the direction of the shot
local direction = camera.CFrame.lookVector
-- Raycast to find the target
local ray = Ray.new(camera.CFrame.Position, direction * 1000)
local hit, position, normal = workspace:FindPartOnRay(ray)
-- If a part is hit, create a bullet hole
if hit then
local bulletHole = Instance.new("Decal")
bulletHole.Texture = "http://www.roblox.com/asset/?id=123456" -- replace with your bullet hole decal
bulletHole.Parent = hit
bulletHole.CFrame = CFrame.new(position, normal)
end
-- Simulate bullet drop
local gravity = workspace.Gravity
local bulletDrop Velocity = direction * bulletSpeed
bulletDropVelocity.Y = bulletDropVelocity.Y - gravity * bulletDrop
local bulletPosition = camera.CFrame.Position
local bullet = Instance.new("Part")
bullet.Anchored = true
bullet.CanCollide = false
bullet.Parent = workspace
local bulletTween = TweenService:Create(bullet, TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {Position = bulletPosition + bulletDropVelocity * 1000})
bulletTween:Play()
bulletTween:WaitForCompletion()
bullet:Destroy()
else
-- Play an "out of ammo" sound effect
sniperRifle.OutOfAmmoSound:Play()
end
end
local function reload()
-- Play a reload animation
humanoid:LoadAnimation(sniperRifle.ReloadAnimatie).Play()
-- Wait for the reload animation to finish
wait(reloadTime)
-- Refill ammo
ammo = 10
sniperRifle.Ammo.Value = ammo
sniperRifle.ReloadSound:Play()
end
-- Listeners
local function InputBegan(input)
if input.KeyCode == Enum.KeyCode.Mouse0 then
shoot()
elseif input.KeyCode == Enum.KeyCode.R then
reload()
end
end
local function InputChanged(input)
if input.KeyCode == Enum.KeyCode.Mouse2 then
-- Toggle scope
scopeOverlay.Visible = not scopeOverlay.Visible
camera.FieldOfView = scopeOverlay.Visible and 10 or 60
end
end
UserInputService.InputBegan:Connect(InputBegan)
UserInputService.InputChanged:Connect(InputChanged)
-- Initialize
sniperRifle.Ammo.Value = ammo
scopeOverlay.Visible = false
camera.FieldOfView = 60
```
This script assumes that you have already set up a sniper rifle model in Roblox Studio with the following elements:
* A `ScopeOverlay` GUI element to display the scope
* A `ReloadAnimatie` Animation to play when reloading
* An `OutOfAmmoSound` Sound to play when out of ammo
* A `ReloadSound` Sound to play when reloading
* An `Ammo` IntValue to store the current ammo count
The script uses the `UserInputService` to detect when the player presses the left mouse button to shoot, the right mouse button to toggle the scope, and the "R" key to reload. It also uses the `TweenService` to simulate the bullet's trajectory and gravity.
Note that this script is just an example, and you will need to customize it to fit your specific game's requirements. You may also want to add additional features, such as bullet penetration, ricochet, or hit detection.
I hope this helps! Let me know if you have any questions or need further assistance.
387
155
113
Released
9mo ago
100% Free
334
131
99
Released
9mo ago
100% Free
1,265
512
446
Released
9mo ago
100% Free
340
132
95
Released
9mo ago
100% Free
211
99
74
Released
9mo ago
100% Free
163
80
60
Released
9mo ago
100% Free
221
113
77
Released
9mo ago
100% Free
2,016
439
344
Released
9mo ago
100% Free
Transform ideas into futuristic sci-fi blueprints.
Open
982
417
333
Released
9mo ago
100% Free
The image generation model uses a basic interpretation and assumes the rest as something random. I am working on improving this and many other factors soon. My tip is to be very objective and basic, that is, let’s say you want to make a cat, simply put black cat on the beach in the prompt, and never use the suggestion because it makes a mess and doesn’t follow it. Take advantage and get to know my tools and again always use key and objective words for your description. You will be successful, ok.
Turn ideas into ethereal paper art masterpieces.
Open
405
175
139
Released
9mo ago
100% Free
166
115
78
Released
9mo ago
100% Free
892
244
189
Released
9mo ago
100% Free
425
178
128
Released
9mo ago
100% Free
Pretty useful tool for decorating ideas, but they are a bit unrealistic
409
161
133
Released
9mo ago
100% Free
It does exactly what it promises and follows the prompt very accurately ;-) THX
212
120
94
Released
9mo ago
100% Free
171
83
66
Released
9mo ago
100% Free
1,227
340
302
Released
9mo ago
100% Free















































































































































































































































































































































































