RyanDaCoder

Box Troll Script UPDATE

Oct 7th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. while true do
  2. wait(1)
  3. -- box troll made by Ryanawesome222
  4. -- RyanDaCoder
  5. -- UPDATED
  6.  
  7. local box = Instance.new("Part")
  8. box.Anchored = false
  9. box.Name = "BoxScript"
  10. box.Size = Vector3.new(4, 3.6, 4)
  11. box.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Head.Position)
  12. box.BrickColor = BrickColor.new("Br. yellowish orange")
  13.  
  14. local decal = Instance.new("Decal")
  15. decal.Texture = "http://www.roblox.com/asset/?id=8384054"
  16. decal.Face = "Top"
  17. decal.Parent = box
  18.  
  19. local decal1 = Instance.new("Decal")
  20. decal1.Texture = "http://www.roblox.com/asset/?id=8384054"
  21. decal1.Face = "Bottom"
  22. decal1.Parent = box
  23.  
  24. local decal2 = Instance.new("Decal")
  25. decal2.Texture = "http://www.roblox.com/asset/?id=8384054"
  26. decal2.Face = "Left"
  27. decal2.Parent = box
  28.  
  29. local decal3 = Instance.new("Decal")
  30. decal3.Texture = "http://www.roblox.com/asset/?id=8384054"
  31. decal3.Face = "Right"
  32. decal3.Parent = box
  33.  
  34. local decal4 = Instance.new("Decal")
  35. decal4.Texture = "http://www.roblox.com/asset/?id=8384054"
  36. decal4.Face = "Front"
  37. decal4.Parent = box
  38.  
  39. local decal5 = Instance.new("Decal")
  40. decal5.Texture = "http://www.roblox.com/asset/?id=8384054"
  41. decal5.Face = "Back"
  42. decal5.Parent = box
  43.  
  44. local plr = game.Players.LocalPlayer
  45. local me = plr.Character
  46.  
  47. me.Humanoid.Jump = true
  48.  
  49. box.Parent = game.Workspace
  50. end
Add Comment
Please, Sign In to add comment