Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. A simple, yet effective, detection for all mobile exploits -...

    devforum.roblox.com/t/a-simple-yet-effective-detection-for-all-mobile-exploits/...

    Salutations, my fellow Developer Forum users. Today, I’m glad to present a detection for almost all, if not all, mobile executors: Evon, Codex, Hydrogen, Delta (X), and possibly others. Don’t forget to thank the unbelievably competent mobile exploit developers, and us too, of course! We will be pleased to answer all questions in this topic for several hours, then we will happily log off ...

  3. Input Object Delta Returning 0 Every Time - Roblox

    devforum.roblox.com/t/input-object-delta-returning-0-every-time/287572

    yAngle = math.clamp(yAngle - input.Delta.y * 0.4, -80, 80); end. end) One thing I want to point out is that, in this code, the input object is received. The delta simply prints as 0 all the time. (Yes, the mouse behavior is set to lock center) If anyone has any ideas as to why the input.Delta is returning zero, that’d be appreciated. Thank ...

  4. Delta Not Working : r/robloxhackers - Reddit

    www.reddit.com/r/robloxhackers/comments/1dd57ca/delta_not_working

    Sufficient-Owl-5250. Switch to computer and use Delta X. If u don't have a computer, trying a new hacks from Delta Exploit Official Website: Trying Uninstall the Delta and download the latest version in Delta Exploit Official Website. Hope it will help you.

  5. DO NOT USE DELTA : r/robloxhackers - Reddit

    www.reddit.com/r/robloxhackers/comments/1ard4lz/do_not_use_delta

    ADMIN MOD. DO NOT USE DELTA. INCIDENT ALERT. There had been reports of Delta stealing Robux which are being sold on dark market. [ 5 REPORTS ] At this point nothing can be trusted, ONLY exploit on alts and VM’s / spare Hardware. [ UPDATE ] lxnny - owner of Delta, joined our Discord and started threatening us to remove this post.

  6. is delta executor safe? : r/robloxhackers - Reddit

    www.reddit.com/r/robloxhackers/comments/u15zkg/is_delta_executor_safe

    12 votes, 170 comments. true. I use delta executor and im kind of suspicious about it but i dont think that link was the same link i used to download delta executor, If so, This means that its probably a virus, People like to make these fake accounts and copy the videos of real executor creators and instead of putting the link to the executor, they probably put a link to some virus.

  7. How to rotate a CFrame using mouse delta? - Roblox

    devforum.roblox.com/t/how-to-rotate-a-cframe-using-mouse-delta/759109

    im trying to make a simple camera system that works like the “Custom” camera type but without a camerasubject, but i cant work with cframes to make it rotate correctly local Delta = UIS:GetMouseDelta() local NewCF = CFrame.Angles(math.rad(Delta.Y),math.rad(Delta.X),0) Cam.CFrame = Cam.CFrame:ToWorldSpace(NewCF) this is the movement, no matter how i move the delta.x and delta.y it wont work ...

  8. Delta 1.1.0 | Make beautiful UI with short scripts - Community...

    devforum.roblox.com/t/delta-110-make-beautiful-ui-with-short-scripts/2052049

    Using the ModuleScript you made in the installation guide, you want to parent it under a new LocalScript. For the LocalScript you want to write the following code: local Delta = require (script.Delta) -- Use the module. Now you will have the module defined, But we want to make UI. So we need to create a new “window”.

  9. delta x v2 cooking : r/robloxhackers - Reddit

    www.reddit.com/r/robloxhackers/comments/1ctbt89/delta_x_v2_cooking

    I'm very new to exploiting and all of this is kinda like a wrapped up wire for me Lol, Isn't Delta malware? 21 votes, 22 comments. 75K subscribers in the robloxhackers community. Reddit's #1 ROBLOX Exploiting community. Whether it's scripts, tutorials….

  10. Help with Mouse.Delta - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/help-with-mousedelta/495967

    You can do this by checking if the mouse.delta.magnitude (like in the example above with points A and B, the result of mouse.delta is a vector, mouse.delta.magnitude the length of that vector which represents the distance the mouse moved since the last frame) and change the height of the sensor’s ui relative to the length of the mouse.delta ...

  11. [SOLVED] Change mouse sensitivity on only 1 axis? - Roblox

    devforum.roblox.com/t/solved-change-mouse-sensitivity-on-only-1-axis/2726557

    local UserInputService = game:GetService("UserInputService") local Camera = workspace.CurrentCamera. -- Set the desired sensitivity for the X and Y axes. local sensitivityX = 0.5 -- Adjust this value to change the X-axis sensitivity. local sensitivityY = 1 -- Adjust this value to change the Y-axis sensitivity.