Roblox Grace Script GUI

Photo of author
Published by

Discover the power of the Grace Script GUI for Roblox, a versatile tool designed to enhance your gaming experience. Whether you’re aiming for improved gameplay or looking to access exclusive features, this script has you covered.

Benefits of Using the Grace Script GUI

The Grace Script GUI brings several advantages to Roblox players, including:

  • Enhanced Gameplay: Unlock unique functionalities that simplify complex tasks and improve efficiency.
  • Custom Features: Tailor the script to suit your playstyle and specific needs.
  • Ease of Use: The user-friendly interface ensures that even beginners can take full advantage of its capabilities.

Key Features and Functionalities

  • Interactive GUI: Intuitive design that lets you easily navigate and apply options.
  • Auto-Farming: Automate tedious tasks to level up faster.
  • In-Game Enhancements: Boost stats or abilities for an edge over competitors.
  • Customizable Options: Personalize settings for an optimized gaming experience.
  • Regular Updates: Stay ahead with new features and improvements tailored to popular game modes.

Code


workspace.DescendantAdded:Connect(function(descendant)
    if descendant:IsA("ParticleEmitter") then
        descendant.Rate = descendant.Rate * 10 -- line of code i added for low-graphics players to see the red(blood) rain
    end
end)

workspace.DescendantAdded:Connect(function(descendant)
    if descendant.Name == "base" and descendant:IsA("BasePart") then
        local player = game.Players.LocalPlayer
        if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
            descendant.Position = player.Character.HumanoidRootPart.Position

            game.StarterGui:SetCore("SendNotification", { -- cosmetic
                Title = "levers moved",
                Text = "door has been opened",
                Duration = 3
            })
        end
    end
end)

workspace.DescendantAdded:Connect(function(descendant)
    if descendant.Name == "eye" or descendant.Name == "elkman" or descendant.Name == "Rush" or descendant.Name == "Worm" or descendant.Name == "eyePrime" then
        descendant:Destroy() -- makes u invincible to these entities since they're all clientsided
    end
end)

local players = game:GetService("Players")
local localPlayer = players.LocalPlayer

while true do
    local eyeGui = localPlayer:FindFirstChild("PlayerGui"):FindFirstChild("eyegui")
    if eyeGui then
        eyeGui:Destroy() -- deletes the eyeparasites (literally makes you invincible even if u get hit + removes distractions)
    end
    task.wait(0.1)
end

while true do
    local smileGui = localPlayer:FindFirstChild("PlayerGui"):FindFirstChild("smilegui")
    if smileGui then
        smileGui:Destroy() --if it wasnt for the fact that carnation gets deleted this would give you a big boost because it still slows him down
    end
    task.wait(0.1)
end

while true do
    local FUNNYGOATMAN = localPlayer:FindFirstChild("PlayerGui"):FindFirstChild("GOATPORT")
    if FUNNYGOATMAN then
        FUNNYGOATMAN:Destroy() --doesnt work yet
    end
    task.wait(0.1)
end

Copying and Using the Script

  • Access the Script: Click the button above to access the script.
  • Copying the Code: Select and copy the entire script code.
  • Applying the Script: Use a script executor of your choice to implement the script in the game
Click to rate this script!
[Total: 5 Average: 3.6]

Leave a Comment