0% found this document useful (0 votes)
138 views3 pages

Message 38

The document contains Lua code for an auto-mining script in a Roblox game. It creates a GUI window with toggles to turn noclip and auto-mining on/off. When auto-mining is on, it equips a pickaxe, enables noclip, and continuously uses noclip to teleport and mine emeralds and diamonds, sending hit requests to the server. It also queues the player for a mining event.

Uploaded by

Beter
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
138 views3 pages

Message 38

The document contains Lua code for an auto-mining script in a Roblox game. It creates a GUI window with toggles to turn noclip and auto-mining on/off. When auto-mining is on, it equips a pickaxe, enables noclip, and continuously uses noclip to teleport and mine emeralds and diamonds, sending hit requests to the server. It also queues the player for a mining event.

Uploaded by

Beter
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

wait(3) -- waiting on load

game:GetService("Players").LocalPlayer.PlayerGui.Hotbar['1']['1']['1']['4'].Text =
"ICESYSTEMS ON TOP"
game.Players.LocalPlayer.Character.LastDamagedTick:Destroy()
wait(0.1)
local Players = game:GetService("Players")
local HR = Players.LocalPlayer.Character.HumanoidRootPart
function tp(destination)
local TweenService = game:GetService("TweenService")
local HR = Players.LocalPlayer.Character.HumanoidRootPart
local Distance = (HR.Position - destination.Position).Magnitude
local Time = Distance / tonumber(25)
local Tween = TweenService:Create(HR,
TweenInfo.new(Time,Enum.EasingStyle.Linear), {CFrame = destination})
Tween:Play()
Tween.Completed:Connect(function()
return Tween
end)
end
local function NoclipLoop()
local Clip = false
if Clip == false and game:GetService("Players").LocalPlayer.Character ~= nil
then
for _, child in
pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
if child:IsA("BasePart") and child.CanCollide == true then
child.CanCollide = false
end
end
end
end
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "IceSystems EVENT [Premium]",
LoadingTitle = "Rayfield Interface Suite",
LoadingSubtitle = "by Sirius",
ConfigurationSaving = {
Enabled = true,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "IceIslandsEvent"
},
Discord = {
Enabled = true,
Invite = "vQbmRvnqbv", -- The Discord invite code, do not include
discord.gg/. E.g. discord.gg/ABCD would be ABCD
RememberJoins = true -- Set this to false to make them join the discord
every time they load it up
},
KeySystem = true, -- Set this to true to use our key system
KeySettings = {
Title = "Islands",
Subtitle = "Key System",
Note = "must pay for access keys should be provided to you if bought.",
FileName = "KeyFile", -- It is recommended to use something unique as other
scripts using Rayfield may overwrite your key file
SaveKey = true, -- The user's key will be saved, but if you change the key,
they will be unable to use your script
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site
you would like Rayfield to get the key from
Key = "3CvjWWgbTpJtDzfNmz4UBPkgUx9ZK6Ny",
}
})

local Tab = Window:CreateTab("Event", 4483362458) -- Title, Image

local Section = Tab:CreateSection("Mining")

local Toggle = Tab:CreateToggle({


Name = "Mine Event",
CurrentValue = false,
Flag = "Toggle1", -- A flag is the identifier for the configuration file, make
sure every element has a different flag if you're using configuration saving to
ensure no overlaps
Callback = function(Value)
getgenv().cay = Value
task.spawn(function()
while task.wait() do

game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(game:GetService
("Players").LocalPlayer.Backpack:FindFirstChild("ironPickaxe"))
task.spawn(function()
while task.wait(0.5) do
if not cay then return end
NoclipLoop()
end
end)
if not cay then return end
for i,v in pairs(workspace.WildernessBlocks:GetChildren()) do
if v.Name == "rockEmerald" then
repeat task.wait(0.15)
if not cay then return end
tp(v.CFrame)
local args = {
[1] = {
["block"] = v,
["hfnfoeoxnugh"] = "\
7\240\159\164\163\240\159\164\161\7\n\7\n\7\nFvysg",
}
}

game:GetService("ReplicatedStorage"):WaitForChild("rbxts_include"):WaitForChild("no
de_modules"):WaitForChild("@rbxts"):WaitForChild("net"):WaitForChild("out"):WaitFor
Child("_NetManaged"):WaitForChild("CLIENT_BLOCK_HIT_REQUEST"):InvokeServer(unpack(a
rgs))
until not cay or not v or not v.Parent
elseif v.Name == "rockDiamond" then
repeat task.wait(0.15)
if not cay then return end
tp(v.CFrame)
local args = {
[1] = {
["block"] = v,
["hfnfoeoxnugh"] = "\
7\240\159\164\163\240\159\164\161\7\n\7\n\7\nFvysg",
}
}
game:GetService("ReplicatedStorage"):WaitForChild("rbxts_include"):WaitForChild("no
de_modules"):WaitForChild("@rbxts"):WaitForChild("net"):WaitForChild("out"):WaitFor
Child("_NetManaged"):WaitForChild("CLIENT_BLOCK_HIT_REQUEST"):InvokeServer(unpack(a
rgs))

until not cay or not v or not v.Parent


end
end
end
end)
end,
})

wait(599)
local args = {
[1] = {
["queueType"] = "mining_event"
}
}

game:GetService("ReplicatedStorage"):FindFirstChild("events-@easy-games/
lobby:shared/event/lobby-
[email protected]").joinQueue:FireServer(unpack(args))

You might also like