NaLajcie - Guitar System
Purchase this resource
Tebex: Click Here
Showcase Video: Click Here
Discord: Click Here
About
NaLajcie - Guitar System allows you to play music from a playlist configured within the system and supports two types of guitars: acoustic and electric.
-
Playlist Configuration:
-
Users can edit the script configuration by adding song titles and links to corresponding music materials on YouTube. This enables flexible management of available songs and their sources.
-
Automatic Song Addition:
-
After adding a new song to the configuration list, the script automatically recognizes it and allows for playback. (After adding a new song, reset the script.)
-
Dual Guitar Support:
-
The script provides support for two types of guitars - acoustic and electric. Users can choose which guitar to use, allowing for the playback of different types of music.
-
Volume Control:
-
The script allows for adjusting the volume of the played music, allowing users to customize the sound according to their preferences and environmental conditions.
Simple configuration via config
Config = {}
Config.DefaultVolume = 0.07 -- Default Volume
Config.Set_the_volume = { -- settings inputDialog
inputDialog = 'Ustawienia muzyki',
type = 'slider',
label = 'Ustaw glosnosc',
required = true,
min = 0.0,
max = 1.0,
step = 0.01,
default = Config.DefaultVolume,
icon = 'box'
}
Config.MusicListAcoustic = { -- Add as much music as you want here
{"Believer", 'https://www.youtube.com/watch?v=hXQxSi34GWY'},
{"Beggin", 'https://www.youtube.com/watch?v=b0LkG52V-lI'},
{"Szampan", 'https://www.youtube.com/watch?v=UGYKh2iULxc'},
}
Config.MusicListElectric = { -- Add as much music as you want here
{"Bella Ciao", 'https://www.youtube.com/watch?v=6XNG9Q27zdE'},
{"Crazy Frog", 'https://www.youtube.com/watch?v=H7CC2cJUku0'},
}
Config.Locale = {
Current_song_settings = 'Ustawienia aktualnego utwóru:',
Current_song_settings_icon = 'fas fa-music',
Set_the_volume = 'Ustaw głośność',
Set_the_volume_description = 'Ustaw głośność muzyki',
Set_the_volume_icon = 'fas fa-volume-up',
Stop_the_music = 'Zatrzymaj muzykę',
Stop_the_music_description = 'Stop the currently playing music',
Stop_the_music_notify = 'Muzyka zatrzymana.',
Stop_the_music_icon = 'fas fa-stop',
Icon_play = 'fas fa-play-circle',
First_stop_music = 'Najpierw należy zatrzymać bieżący utwór.',
Choose_a_song = 'Wybierz piosenkę',
in_the_car = 'Nie możesz użyć w samochodzie!',
}
Code is accessible | No (Only Config) |
Subscription-based | No |
Lines (approximately) | 348 |
Requirements | ESX, OX_LIB |
Support | Yes |