Advertisement
Guest User

Untitled

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