Skip to content

Commit

Permalink
Merge pull request #494 from Expertcoderz/patch-15
Browse files Browse the repository at this point in the history
Introducing !profile (replacement for :inspect)
  • Loading branch information
Sceleratis authored Sep 24, 2021
2 parents be1fbae + 96cd4f7 commit 06aa247
Show file tree
Hide file tree
Showing 7 changed files with 487 additions and 488 deletions.
19 changes: 19 additions & 0 deletions MainModule/Client/Core/Functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1662,5 +1662,24 @@ return function()
return 6825455804;
end
end;

GetUserInputServiceData = function(args)
local data = {}
local props = {
"AccelerometerEnabled";
"GamepadEnabled";
"GyroscopeEnabled";
"KeyboardEnabled";
"MouseDeltaSensitivity";
"MouseEnabled";
"OnScreenKeyboardVisible";
"TouchEnabled";
"VREnabled";
}
for i, p in pairs(props) do
data[p] = service.UserInputService[p]
end
return data
end;
};
end
1 change: 1 addition & 0 deletions MainModule/Client/Core/Variables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ return function()
ParticlesEnabled = true;
CapesEnabled = true;
HideChatCommands = false;
PrivacyMode = false;
Particles = {};
KeyBinds = {};
Aliases = {};
Expand Down
Loading

0 comments on commit 06aa247

Please sign in to comment.