Advertisement
anphu04

ROBLOX Delete Tool Exploit

Dec 22nd, 2018
9,644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.22 KB | None | 0 0
  1. HOTKEY = 'h' -- letter keys only
  2. -- 23/12/2018 --
  3. -- By Valualty --
  4. -- The part you click will turn transparent and go through --
  5. -- USER INPUT SERVICE DOESN'T WORK FOR EXPLOITS! --
  6. wait(0.1)
  7. plr = game:GetService('Players').LocalPlayer
  8. mouse = plr:GetMouse()
  9. tagn = 'gnomed'
  10. actn = 'acto3'
  11.  
  12. function checkact()
  13.     if workspace:FindFirstChild(actn) then
  14.         return true
  15.     end
  16. end
  17. function checkdeath()
  18.     if plr.Character:FindFirstChild('Humanoid') then
  19.         if plr.Character.Humanoid.Health <= 0 then
  20.             return true
  21.         end
  22.     end
  23. end
  24.  
  25. local h = Instance.new('Hint',plr.PlayerGui)
  26. h.Text = "EXPLOIT BY VALUALTY"
  27. game.Debris:AddItem(h,4)
  28.  
  29.  
  30.  
  31.  
  32.  
  33. spawn(function() -- just an introduction stuff
  34.  
  35.     local gui = Instance.new('ScreenGui',plr.PlayerGui)
  36.     gui.Name = 'btool gui by valualty'
  37.     local top = Instance.new("TextLabel")
  38.     local under = Instance.new("TextLabel")
  39.     local shadow = Instance.new("TextLabel")
  40.     local howto = Instance.new("TextLabel")
  41.    
  42.     top.Name = "top"
  43.     top.Parent = gui
  44.     top.BackgroundColor3 = Color3.new(1, 1, 1)
  45.     top.BackgroundTransparency = 1
  46.     top.Position = UDim2.new(0.200000003, 0, 0.349999994, 0)
  47.     top.Size = UDim2.new(0.600000024, 0, 0.300000012, 0)
  48.     top.ZIndex = 2
  49.     top.Font = Enum.Font.GothamBold
  50.     top.Text = "EXPLOIT BY VALUALTY\nTwitter: @valualty"
  51.     top.TextColor3 = Color3.new(1, 0.666667, 0)
  52.     top.TextScaled = true
  53.     top.TextSize = 14
  54.     top.TextStrokeTransparency = 0
  55.     top.TextWrapped = true
  56.    
  57.     under.Name = "under"
  58.     under.Parent = gui
  59.     under.BackgroundColor3 = Color3.new(1, 1, 1)
  60.     under.BackgroundTransparency = 1
  61.     under.Position = UDim2.new(0.200000003, 0, 0.349999994, 4)
  62.     under.Size = UDim2.new(0.600000024, 0, 0.300000012, 0)
  63.     under.Font = Enum.Font.GothamBold
  64.     under.Text = "EXPLOIT BY VALUALTY\nTwitter: @valualty"
  65.     under.TextColor3 = Color3.new(0.741176, 0.494118, 0)
  66.     under.TextScaled = true
  67.     under.TextSize = 14
  68.     under.TextStrokeTransparency = 0
  69.     under.TextWrapped = true
  70.    
  71.     shadow.Name = "shadow"
  72.     shadow.Parent = gui
  73.     shadow.BackgroundColor3 = Color3.new(1, 1, 1)
  74.     shadow.BackgroundTransparency = 1
  75.     shadow.Position = UDim2.new(0.192885369, 0, 0.349999994, 4)
  76.     shadow.Size = UDim2.new(0.614229262, 0, 0.317350179, 0)
  77.     shadow.ZIndex = 0
  78.     shadow.Font = Enum.Font.GothamBold
  79.     shadow.Text = "EXPLOIT BY VALUALTY\nTwitter: @valualty"
  80.     shadow.TextColor3 = Color3.new(0, 0, 0)
  81.     shadow.TextScaled = true
  82.     shadow.TextSize = 14
  83.     shadow.TextTransparency = 0.5
  84.     shadow.TextWrapped = true
  85.    
  86.     howto.Name = "howto"
  87.     howto.Parent = gui
  88.     howto.BackgroundColor3 = Color3.new(1, 1, 1)
  89.     howto.BackgroundTransparency = 1
  90.     howto.Position = UDim2.new(0.349999994, 0, 0.939999998, -60)
  91.     howto.Size = UDim2.new(0.300000012, 0, 0.0599999987, 0)
  92.     howto.Font = Enum.Font.Highway
  93.     howto.Text = "Press "..HOTKEY.." key to toggle Delete Tool"
  94.     howto.TextColor3 = Color3.new(1, 0.666667, 0)
  95.     howto.TextScaled = true
  96.     howto.TextSize = 14
  97.     howto.TextStrokeTransparency = 0
  98.     howto.TextWrapped = true
  99.     howto.Visible = false
  100.    
  101.     spawn(function() -- some dank anthem for panic station
  102.         ussr = Instance.new('Sound',plr.PlayerGui)
  103.         ussr.Name = 'BLYATSOME'
  104.         ussr.SoundId = 'rbxassetid://593681991'
  105.         ussr.TimePosition = 3.5
  106.         ussr.Volume = 1
  107.         ussr:Play()
  108.         wait(10)
  109.         for i = 1,-0.05,-0.05 do
  110.             ussr.Volume = i
  111.             wait()
  112.         end
  113.     end)
  114.    
  115.     wait(6)
  116.     for i = 0,1.1,0.1 do
  117.         top.TextStrokeTransparency = i
  118.         top.TextTransparency = i
  119.         under.TextStrokeTransparency = i
  120.         under.TextTransparency = i
  121.         shadow.TextStrokeTransparency = i
  122.         shadow.TextTransparency = i
  123.         wait()
  124.     end
  125.    
  126.     howto.Visible = true
  127. end)
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134. keyevent = mouse.KeyDown:Connect(function(key)
  135.     if not checkdeath() then
  136.         if key == string.lower(HOTKEY) then
  137.             if not workspace:FindFirstChild(actn) then
  138.                 local acttag = Instance.new('BoolValue',workspace)
  139.                 acttag.Name = actn
  140.             else
  141.                 workspace[actn]:Destroy()
  142.             end
  143.         end
  144.     end
  145. end)
  146.  
  147. clickevent = mouse.Button1Down:Connect(function()
  148.     if checkact() then
  149.         local target = mouse.Target
  150.         if target then
  151.             if not target:FindFirstChild(tagn) then
  152.                 local tag = Instance.new('BoolValue',target)
  153.                 tag.Name = tagn
  154.                 local trans = Instance.new('NumberValue',target)
  155.                 trans.Name = 'trans'
  156.                 trans.Value = target.Transparency
  157.                 local clickbox = Instance.new('SelectionBox',target)
  158.                 clickbox.Name = 'cliccbox'
  159.                 clickbox.LineThickness = .05
  160.                 clickbox.Adornee = target
  161.                 clickbox.Color3 = Color3.fromRGB(255,0,0)
  162.                
  163.                 if target.Transparency < 0.7 then
  164.                     target.Transparency = 0.7
  165.                 end
  166.                 target.CanCollide = false
  167.             else
  168.                 target.Transparency = target.trans.Value
  169.                 target.cliccbox:Destroy()
  170.                 target.CanCollide = true
  171.                
  172.                 target[tagn]:Destroy()
  173.                 target.trans:Destroy()
  174.             end
  175.         end
  176.     end
  177. end)
  178.  
  179. while true do
  180.     wait(.1)
  181.     if checkact() then
  182.         local target = mouse.Target
  183.         if target then
  184.             local hoverbox = Instance.new('SelectionBox',target)
  185.             hoverbox.Name = 'hoverbox'
  186.             hoverbox.LineThickness = .1
  187.             hoverbox.Color3 = Color3.fromRGB(85, 255, 255)
  188.             hoverbox.Adornee = target
  189.             game.Debris:AddItem(hoverbox,.1)
  190.         end
  191.     end
  192.     if checkdeath() then
  193.         break
  194.     end
  195. end
  196.  
  197. if checkact() then workspace[actn]:Destroy() end
  198. if keyevent then keyevent:Disconnect() end
  199. if clickevent then clickevent:Disconnect() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement