HaxRoblox

Create/Part|Be me

Sep 27th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local Mouse = Player:GetMouse()
  3. Player.Character.Humanoid.Animator:Destroy()
  4. Player.Character.Humanoid.WalkSpeed = 4
  5. Mouse.KeyDown:connect(function(Key)
  6. Key = Key:lower()
  7. if Key == 'q' then
  8. local Part = Instance.new('Part', game.Workspace)
  9. Part.Anchored = true
  10. Part.CanCollide = false
  11. Part.Size = Vector3.new(1,1,1)
  12. Part.Name = 'PartMakedBy'
  13. Part.CFrame = Player.Character.Head.CFrame * CFrame.new(0,0,-5)
  14. end
  15. end)
  16. a = Instance.new('Part', game.Workspace)
  17. a.Size = Vector3.new(1,1,1)
  18. a.CanCollide = false
  19. a.Anchored = true
  20. a.Name = 'AbsoluteCodingIA'
  21. a.Transparency = 0.6
  22. while true do wait(0.1)
  23. a.CFrame = Player.Character.Head.CFrame * CFrame.new(0,0,-5)
  24. end
Advertisement
Add Comment
Please, Sign In to add comment