Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local Miner = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local Value = Instance.new("TextBox")
- local Clover = Instance.new("TextButton")
- local TwitchPoints = Instance.new("TextButton")
- local Walk = Instance.new("TextButton")
- local Jump = Instance.new("TextButton")
- local AutoCrates = Instance.new("TextButton")
- local MaskedMan = Instance.new("TextButton")
- -- Properties
- Miner.Name = "Miner"
- Miner.Parent = game.Players.LocalPlayer.PlayerGui
- Miner.ResetOnSpawn = false
- Main.Name = "Main"
- Main.Parent = Miner
- Main.Active = true
- Main.BackgroundColor3 = Color3.new(0, 0, 0)
- Main.BackgroundTransparency = 0.5
- Main.BorderColor3 = Color3.new(1, 1, 1)
- Main.BorderSizePixel = 2
- Main.Draggable = true
- Main.Position = UDim2.new(0, 0, 0.349999994, 0)
- Main.Selectable = true
- Main.Size = UDim2.new(0, 215, 0, 140)
- Value.Name = "Value"
- Value.Parent = Main
- Value.BackgroundColor3 = Color3.new(0, 0, 0)
- Value.BackgroundTransparency = 0.69999998807907
- Value.BorderColor3 = Color3.new(1, 1, 1)
- Value.BorderSizePixel = 0
- Value.Position = UDim2.new(0, 5, 0, 110)
- Value.Size = UDim2.new(0, 205, 0, 25)
- Value.Font = Enum.Font.SourceSansBold
- Value.FontSize = Enum.FontSize.Size18
- Value.Text = "Value"
- Value.TextColor3 = Color3.new(1, 1, 1)
- Value.TextSize = 18
- Clover.Name = "Clover"
- Clover.Parent = Main
- Clover.BackgroundColor3 = Color3.new(0, 0, 0)
- Clover.BackgroundTransparency = 0.69999998807907
- Clover.BorderColor3 = Color3.new(1, 1, 1)
- Clover.BorderSizePixel = 0
- Clover.Position = UDim2.new(0, 5, 0, 5)
- Clover.Size = UDim2.new(0, 100, 0, 25)
- Clover.Font = Enum.Font.SourceSansBold
- Clover.FontSize = Enum.FontSize.Size18
- Clover.Text = "Clovers"
- Clover.TextColor3 = Color3.new(1, 1, 1)
- Clover.TextSize = 18
- Clover.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.Clovers.Value = game.Players.LocalPlayer.Clovers.Value + Value.Text
- end)
- TwitchPoints.Name = "TwitchPoints"
- TwitchPoints.Parent = Main
- TwitchPoints.BackgroundColor3 = Color3.new(0, 0, 0)
- TwitchPoints.BackgroundTransparency = 0.69999998807907
- TwitchPoints.BorderColor3 = Color3.new(1, 1, 1)
- TwitchPoints.BorderSizePixel = 0
- TwitchPoints.Position = UDim2.new(0, 110, 0, 5)
- TwitchPoints.Size = UDim2.new(0, 100, 0, 25)
- TwitchPoints.Font = Enum.Font.SourceSansBold
- TwitchPoints.FontSize = Enum.FontSize.Size18
- TwitchPoints.Text = "Twitch Points"
- TwitchPoints.TextColor3 = Color3.new(1, 1, 1)
- TwitchPoints.TextSize = 18
- TwitchPoints.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.TwitchPoints.Value = game.Players.LocalPlayer.TwitchPoints.Value + Value.Text
- end)
- Walk.Name = "Walk"
- Walk.Parent = Main
- Walk.BackgroundColor3 = Color3.new(0, 0, 0)
- Walk.BackgroundTransparency = 0.69999998807907
- Walk.BorderColor3 = Color3.new(1, 1, 1)
- Walk.BorderSizePixel = 0
- Walk.Position = UDim2.new(0, 5, 0, 65)
- Walk.Size = UDim2.new(0, 100, 0, 25)
- Walk.Font = Enum.Font.SourceSansBold
- Walk.FontSize = Enum.FontSize.Size18
- Walk.Text = "WalkSpeed"
- Walk.TextColor3 = Color3.new(1, 1, 1)
- Walk.TextSize = 18
- Walk.MouseButton1Click:connect(function()
- player = game.Players.LocalPlayer
- player.Character.Humanoid.WalkSpeed = Value.Text
- end)
- Jump.Name = "Jump"
- Jump.Parent = Main
- Jump.BackgroundColor3 = Color3.new(0, 0, 0)
- Jump.BackgroundTransparency = 0.69999998807907
- Jump.BorderColor3 = Color3.new(1, 1, 1)
- Jump.BorderSizePixel = 0
- Jump.Position = UDim2.new(0, 110, 0, 65)
- Jump.Size = UDim2.new(0, 100, 0, 25)
- Jump.Font = Enum.Font.SourceSansBold
- Jump.FontSize = Enum.FontSize.Size18
- Jump.Text = "JumpPower"
- Jump.TextColor3 = Color3.new(1, 1, 1)
- Jump.TextSize = 18
- Jump.MouseButton1Click:connect(function()
- player = game.Players.LocalPlayer
- player.Character.Humanoid.JumpPower = Value.Text
- end)
- AutoCrates.Name = "AutoCrates"
- AutoCrates.Parent = Main
- AutoCrates.BackgroundColor3 = Color3.new(0, 0, 0)
- AutoCrates.BackgroundTransparency = 0.69999998807907
- AutoCrates.BorderColor3 = Color3.new(1, 1, 1)
- AutoCrates.BorderSizePixel = 0
- AutoCrates.Position = UDim2.new(0, 5, 0, 35)
- AutoCrates.Size = UDim2.new(0, 100, 0, 25)
- AutoCrates.Font = Enum.Font.SourceSansBold
- AutoCrates.FontSize = Enum.FontSize.Size18
- AutoCrates.Text = "Auto Crates"
- AutoCrates.TextColor3 = Color3.new(1, 1, 1)
- AutoCrates.TextSize = 18
- AutoCrates.MouseButton1Click:connect(function()
- while wait() do
- while wait(2) do
- for _,v in pairs(game.Workspace:GetChildren()) do
- if string.match(v.Name, "DiamondCrate") or string.match(v.Name, "ResearchCrate") or string.match(v.Name, "GoldenCrate") or string.match(v.Name, "CrystalCrate") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "MegaPumpkin") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "LuckyCrate") or string.match(v.Name, "ExecutiveCrate") or string.match(v.Name, "GiftCrate") then
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
- v.CanCollide = false
- v.Transparency = 1
- for _,v in pairs(game.Workspace.Shadows:GetChildren()) do
- if string.match(v.Name, "ShadowCrate") or string.match(v.Name, "MegaPumpkin") then
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
- v.CanCollide = false
- v.Transparency = 1
- end
- end
- end
- end
- end
- end
- end)
- MaskedMan.Name = "MaskedMan"
- MaskedMan.Parent = Main
- MaskedMan.BackgroundColor3 = Color3.new(0, 0, 0)
- MaskedMan.BackgroundTransparency = 0.69999998807907
- MaskedMan.BorderColor3 = Color3.new(1, 1, 1)
- MaskedMan.BorderSizePixel = 0
- MaskedMan.Position = UDim2.new(0, 110, 0, 35)
- MaskedMan.Size = UDim2.new(0, 100, 0, 25)
- MaskedMan.Font = Enum.Font.SourceSansBold
- MaskedMan.FontSize = Enum.FontSize.Size18
- MaskedMan.Text = "Masked Man"
- MaskedMan.TextColor3 = Color3.new(1, 1, 1)
- MaskedMan.TextSize = 18
- MaskedMan.MouseButton1Click:connect(function()
- thing = game.Workspace.Market.Hitfox
- thing.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
- thing.Transparency = 0
- thing.BrickColor = BrickColor.new(255,0,100)
- tell = Instance.new("SurfaceGui",thing)
- tell2 = Instance.new("TextLabel",tell)
- tell2.Size = UDim2.new(0, 800, 0, 750)
- tell2.TextWrapped= true
- tell2.TextScaled = true
- tell2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- tell2.TextColor3 = Color3.fromRGB(255, 255, 255)
- tell2.Text = "Click Me!"
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement