-- Objects local MiningSimGUI = Instance.new("ScreenGui") local ScrollingFrame = Instance.new("ScrollingFrame") local SpaceMine = Instance.new("TextButton") local EarthMine = Instance.new("TextButton") local SavePos = Instance.new("TextButton") local Sell = Instance.new("TextButton") local TextLabel = Instance.new("TextLabel") local TPBypass = Instance.new("TextButton") -- Properties MiningSimGUI.Name = "Mining Sim GUI" MiningSimGUI.Parent = game.CoreGui ScrollingFrame.Parent = MiningSimGUI ScrollingFrame.Active = true ScrollingFrame.Draggable = true ScrollingFrame.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745) ScrollingFrame.BackgroundTransparency = 0.050000000745058 ScrollingFrame.BorderColor3 = Color3.new(1, 1, 1) ScrollingFrame.BorderSizePixel = 2 ScrollingFrame.Position = UDim2.new(0.725601196, 0, 0.227272734, 0) ScrollingFrame.Selectable = false ScrollingFrame.Size = UDim2.new(0, 169, 0, 192) ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0.75, 0) ScrollingFrame.ScrollBarThickness = 10 SpaceMine.Name = "SpaceMine" SpaceMine.Parent = ScrollingFrame SpaceMine.BackgroundColor3 = Color3.new(1, 1, 1) SpaceMine.BorderColor3 = Color3.new(0.262745, 0.262745, 0.262745) SpaceMine.BorderSizePixel = 0 SpaceMine.Position = UDim2.new(0.106508881, 0, 0.227828577, 0) SpaceMine.Size = UDim2.new(0, 120, 0, 40) SpaceMine.Font = Enum.Font.SciFi SpaceMine.Text = "Tele SpaceMine" SpaceMine.TextColor3 = Color3.new(0, 0, 0) SpaceMine.TextSize = 14 SpaceMine.MouseButton1Click:connect(function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2.66, 11.2, 1574.72) end) EarthMine.Name = "EarthMine" EarthMine.Parent = ScrollingFrame EarthMine.BackgroundColor3 = Color3.new(1, 1, 1) EarthMine.BorderSizePixel = 0 EarthMine.Position = UDim2.new(0.106508881, 0, 0.356081188, 0) EarthMine.Size = UDim2.new(0, 120, 0, 40) EarthMine.Font = Enum.Font.SciFi EarthMine.Text = "Tele EarthMine" EarthMine.TextColor3 = Color3.new(0, 0, 0) EarthMine.TextSize = 14 EarthMine.MouseButton1Click:connect(function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2.845, 11.115, 2.871) end) SavePos.Name = "Save Pos" SavePos.Parent = ScrollingFrame SavePos.BackgroundColor3 = Color3.new(1, 1, 1) SavePos.BorderSizePixel = 0 SavePos.Position = UDim2.new(0.106508881, 0, 0.520792127, 0) SavePos.Size = UDim2.new(0, 120, 0, 40) SavePos.Font = Enum.Font.SciFi SavePos.Text = "Buy Tools" SavePos.TextColor3 = Color3.new(0, 0, 0) SavePos.TextSize = 14 SavePos.MouseButton1Click:Connect(function() local part = Instance.new("Part", workspace)   local var = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame   game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Activation.Buy.CFrame * CFrame.new(0,5,0)   wait(1)   game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = var   end) Sell.Name = "Sell" Sell.Parent = ScrollingFrame Sell.BackgroundColor3 = Color3.new(1, 1, 1) Sell.BorderColor3 = Color3.new(0.262745, 0.262745, 0.262745) Sell.BorderSizePixel = 0 Sell.Position = UDim2.new(0.106508881, 0, 0.10153164, 0) Sell.Size = UDim2.new(0, 120, 0, 40) Sell.Font = Enum.Font.SciFi Sell.Text = "Sell Ores" Sell.TextColor3 = Color3.new(0, 0, 0) Sell.TextSize = 14 Sell.MouseButton1Click:connect(function() local part = Instance.new("Part", workspace)   local var = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame   game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Activation.Sell.CFrame * CFrame.new(0,5,0)   wait(1)   game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = var end) TextLabel.Parent = ScrollingFrame TextLabel.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745) TextLabel.BackgroundTransparency = 1 TextLabel.BorderColor3 = Color3.new(1, 1, 1) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0, 0, -0.00747282431, 0) TextLabel.Size = UDim2.new(0, 156, 0, 25) TextLabel.Font = Enum.Font.SciFi TextLabel.Text = "Mining Simulator GUI" TextLabel.TextColor3 = Color3.new(1, 1, 1) TextLabel.TextSize = 14 TPBypass.Name = "TPBypass" TPBypass.Parent = ScrollingFrame TPBypass.BackgroundColor3 = Color3.new(1, 1, 1) TPBypass.Position = UDim2.new(0.0532544367, 0, 0.0520833358, 0) TPBypass.Size = UDim2.new(0, 137, 0, 15) TPBypass.Font = Enum.Font.SciFi TPBypass.Text = "TP Bypass" TPBypass.TextColor3 = Color3.new(0, 0, 0) TPBypass.TextSize = 14 TPBypass.MouseButton1Click:connect(function() local plr = game:GetService("Players").LocalPlayer.Character.Humanoid plr.Parent = nil wait() local clone = Instance.new("Humanoid",game:GetService("Players").LocalPlayer.Character) clone.Parent.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(0,1000,0)) wait(.6) clone:Destroy() plr.Parent = game:GetService("Players").LocalPlayer.Character end) -- Scripts