Want to create interactive content? It’s easy in Genially!

Get started free

Come scripto?!? (ITA)

gabriele eupani

Created on September 12, 2025

Start designing with a free template

Discover more than 1500 professional designs like these:

Transcript

Come scripto?!?

ROBLOX STUDIO SCRIPTING TUTORIAL ITA
wow

Iniziamo!

ServerScriptService

la cartella serverscriptservice è una delle cartelle più importanti di un gioco qui dentro i stanno gli server script o altri script importanti... i server script permettono di far funzionare il gioco alla perfezzione esempio: QUANDO IL GIOCATORE ENTRA IN QUESTA STANZA SCRIPT SERVER LAVORA DI AGGIORNARE LA MAPPA E CAMBIARE DIMENSIONE. detto in parole povere

StarterPlayer

lo starterplayerscript = qui dentro si trovano gli script del giocatore (esempio: nome colorato sopra la testa, tag, server chat....) qui dentro puoi aggiungere script per avere tag in chat e molto altro

ReplicatedStorage

Nei replicatedStorage si mettono gli eventi o modelli che con altri script funzionano (esempio: un modello è chiuso in replicatedStorage perchè quando il giocatore tocca PART1 compare il modello)

SCRIPT

(PROSSIMA PAGINA)

CHAT TAG SCRIPT local TextChatService = game:GetService("TextChatService") local CollaboratorName = {"NAME "} -- Put your Name or someones Name inside of Here local DevelopersName = {"NAME"} -- Put your Name or someones Name inside of Here TextChatService.OnIncomingMessage = function(Message) local Player = game.Players:GetPlayerByUserId(Message.TextSource.UserId) if table.find(CollaboratorName, Player.Name) then local CollaboratorTag = "[TAGNAME] " local CollaboratorTag = "<font color='#FFFF00'>"..CollaboratorTag.."</font>" Message.PrefixText = CollaboratorTag..""..Message.PrefixText elseif table.find(DevelopersName, Player.Name) then local DeveloperTag = "[TAGNAME] " local DeveloperColoredTag = "<font color='#AAFF00'>"..DeveloperTag.."</font>" Message.PrefixText = DeveloperColoredTag..""..Message.PrefixText end end

END