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

3,195
908
852
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.
210
98
73
Released
9mo ago
100% Free
322
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
680
166
154
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
166
115
78
Released
9mo ago
100% Free
392
123
118
Released
1mo ago
100% Free
427
199
159
Released
10mo 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
41,619
7,799
7,097
Released
1y ago
100% Free

462
250
192
Released
10mo ago
100% Free
1,712
428
409
Released
1y ago
100% Free
Transform ideas into vintage engineering blueprints.
Open
678
277
198
Released
9mo ago
100% Free
335
130
105
Released
8mo ago
100% Free
229
80
70
Released
1y ago
100% Free
3,193,520
455,472
467,098
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.
Transform any image into stunning artistic masterpieces.
Open
185
52
53
Released
1mo ago
100% Free

553
242
213
Released
3mo ago
100% Free
512
177
149
Released
2mo ago
100% Free
It's good, needs a lot of training but the potential is clearly visible. Dev well done
2,202
706
608
Released
9mo ago
100% Free
426
156
117
Released
9mo ago
100% Free
834
263
216
Released
9mo ago
100% Free
Effortlessly craft Roblox doors with AI-powered Lua scripts.
Open
1,282
311
320
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.
386
154
112
Released
9mo ago
100% Free
334
131
99
Released
9mo ago
100% Free
1,264
511
445
Released
9mo ago
100% Free
340
132
95
Released
9mo ago
100% Free
210
98
73
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
981
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
406
160
131
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
2,064
451
408
Released
9mo ago
100% Free
136
61
39
Released
9mo ago
100% Free
Turn visions into Parisian watercolor scenes.
Open
1,505
403
360
Released
9mo ago
100% Free















































































































































































































































































































































































