What do you want to save?
Add Code snippet
New code examples in category Lua
-
-
Awgiedawgie 2022-03-25 05:45:17
function parameters roblox
function generatePart(isAnchored, transpareny, canCollide, name) local part = Instance.new("Part") part.Name = name part.Anchored = isAnchored part.Transparency = transpareny part.CanCollide = canCollide part.Position = Vector3.new(0,15,0)... Add solution -
A-312 2022-03-16 21:40:31
play sound love2d
sound = love.audio.newSource("pling.wav", "static") -- the "static" is better for short sound effects (load the file into memory) music = love.audio.newSource("techno.ogg", "stream") -- the "stream&qu... Add solution
Best helpers
Ranking is empty