Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- UI.AddLabel("kheyPha's pitch key setting thing");
- UI.AddLabel("-------------------------------------");
- UI.AddDropdown("Safe mode [Requiers off to work]", ["Off", "On"]);
- UI.AddLabel("-------------------------------------");
- UI.AddHotkey("Pitch key:");
- UI.AddDropdown("If active", ["Off", "Down", "Emotion", "Zero", "Up", "Fake up", "Fake down"]);
- UI.AddDropdown("If not active", ["Off", "Down", "Emotion", "Zero", "Up", "Fake up", "Fake down"]);
- UI.AddLabel("-------------------------------------");
- UI.AddSliderInt("x", 0, 1920); // I have to make these better, no time rn
- UI.AddSliderInt("y", 0, 1080);
- function Untrust()
- {
- UnTrigs = UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Safe mode [Requiers off to work]");
- UI.SetValue("Misc", "PERFORMANCE & INFORMATION", "Information", "Restrictions", UnTrigs);
- TrustedMode = UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Safe mode [Requiers off to work]")
- if ( TrustedMode == 0 )
- {
- xcoord = UI.GetValue("Misc", "JAVASCRIPT", "Script items", "x");
- ycoord = UI.GetValue("Misc", "JAVASCRIPT", "Script items", "y");
- aTrigs = UI.GetValue("Misc", "JAVASCRIPT", "Script items", "If active");
- anTrigs = UI.GetValue("Misc", "JAVASCRIPT", "Script items", "If not active");
- if (UI.IsHotkeyActive("Misc", "JAVASCRIPT", "Script items", "Pitch key:"))
- {
- UI.SetValue("Anti-aim", "Extra", "Pitch", aTrigs);
- rcolor = 0;
- gcolor = 255;
- }
- else if (!UI.IsHotkeyActive("Misc", "JAVASCRIPT", "Script items", "Pitch key:"))
- {
- UI.SetValue("Anti-aim", "Extra", "Pitch", anTrigs);
- gcolor = 0;
- rcolor = 255;
- }
- Render.FilledRect( xcoord, ycoord, 60, 60, [ rcolor, gcolor, 0, 255 ] );
- }
- else
- {
- return;
- }
- }
- Cheat.RegisterCallback("Draw", "Untrust");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement