The function only detects if you’re recording through ROBLOX’s built-in recorder. Many people nowadays use external recording software, such as Bandicam for example.
1 Like
Judging that Voice was only released a few months ago, it probably was in studio but protected by CoreScripts, now that you don’t need testing, they probably removed it and made it blank.
1 Like
I think your talking about Recording. This is actually for Spatial Voice, it’s also a function (I believe) For SoundService.
2 Likes
Spatial Voice testing. Do you think they just opened it for the public once they thought it was done? I’m not sure myself, tho.
1 Like
It did actually have a description at one time:
I also have an older screenshot of this, back from almost a year ago:
[image]
[image]
Why did they decide to change it to blank? Also again why would it be a bool?
“Starts listening to the user’s voice.”
Maybe it is for Roblox’s screen recorder, but it records your voice while you record your screen? I always wanted that as a kid if that’s what it is.
camomileex0
(camomileex0)
January 17, 2022, 11:32pm
#27
And if it is for voice chat, why would it be needed? Were they trying to make a censoring system then just bailed on it?
Firefeud
(Firefeud)
January 17, 2022, 11:44pm
#28
It looks like it’s used for speech to text on some VR virtual keyboard
-- VirtualKeyboard.lua --
-- Written by Kip Turner, copyright ROBLOX 2016 --
local CoreGui = game:GetService('CoreGui')
local RunService = game:GetService('RunService')
local UserInputService = game:GetService('UserInputService')
local GuiService = game:GetService('GuiService')
local HttpService = game:GetService('HttpService')
local ContextActionService = game:GetService('ContextActionService')
local PlayersService = game:GetService('Players')
local SoundService = game:GetService('SoundService')
local TextService = game:GetService('TextService')
local RobloxGui = CoreGui:WaitForChild("RobloxGui")
local Util = require(RobloxGui.Modules.Settings.Utility)
local BACKGROUND_OPACITY = 0.3
local NORMAL_KEY_COLOR = Color3.new(49/255,49/255,49/255)
local HOVER_KEY_COLOR = Color3.new(49/255,49/255,49/255)
This file has been truncated. show original
2 Likes
camomileex0
(camomileex0)
January 17, 2022, 11:48pm
#29
Hmm, that’s very interesting! Thanks for debugging it.