How would you make a script that uses a voice command for example "Regen Part" to regen a part in the workspace?
The player must say "Regen Part" exaclty to make this regen. Put this in a localscript.
player = game.Players.LocalPlayer player.Chatted:connect(function(message) if message = "Regen Part" then a = Instance.new("Part", game.Workspace) a.Transparency = 0 --Now edit the part using a end end)