Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. function resize(obj,size,pos)
  2. lplr.Backpack.Resize.resize:FireServer(obj,size,pos)
  3. end
  4. function copy(obj)
  5. pos=Vector3.new(obj.Position)
  6. ore=Vector3.new(obj.Orientation)
  7. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  8. if v.Name=="Clone" and v:IsA("Tool") then
  9. v.create:FireServer(obj,pos,ore)
  10. end
  11. end
  12. end
  13. function move(obj,cframe)
  14. game.Players.LocalPlayer.Backpack.Move.setPos:FireServer(obj,cframe)
  15. end
  16. function delete(obj)
  17. for i,v in pairs(lplr.PlayerGui:GetChildren()) do
  18. if v:IsA("Tool") and v.Name=="Delete" then
  19. v.delete:FireServer(obj)
  20. print(obj)
  21. end
  22. end
  23. end
  24. function createpart(cframe,size,color,trans)
  25. plrs:Chat("freeze me")
  26. if trans=="glass" then
  27. plrs:Chat("ghostify me")
  28. elseif trans=="invis" then
  29. plrs:Chat("invis me")
  30. end
  31. if color~="rainbow" then
  32. plrs:Chat("paint me "..color)
  33. elseif color=="random" then
  34. plrs:Chat("rainbowify me")
  35. end
  36. if trans~="glass" and trans~="invis" then
  37. plrs:Chat("vis me")
  38. end
  39. plrs:Chat("clone me")
  40. plrs:Chat("thaw me")
  41. wait(1)
  42. part=workspace["Terrain"]["GameFolder"]["Folder"][lplr.Name]["ice"]
  43. copy(part)
  44. wait(.4)
  45. delete(workspace["Terrain"]["GameFolder"]["Folder"][lplr.Name])
  46. part=workspace["ice"]
  47. part.Name="!"..math.random(1,100)
  48. move(part,cframe)
  49. wait(.3)
  50. resize(part,size,cframe)
  51. end
  52. _G.delete = delete
  53. _G.move = move
  54. _G.cpl = createpart
  55. _G.resize = resize
  56. _G.copy = copy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement