Ic3RB1X

test

May 12th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. function clerp(c1,c2,al)
  2. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  3. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  4. for i,v in pairs(com1) do
  5. com1[i] = v+(com2[i]-v)*al
  6. end
  7. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  8. end
  9.  
  10. function weld(p0,p1,c0,c1,par)
  11. local w = Instance.new("Weld", par)
  12. w.Part0 = p0
  13. w.Part1 = p1
  14. w.C0 = c0 or CFrame.new()
  15. w.C1 = c1 or CFrame.new()
  16. return w
  17. end
  18.  
  19. xmathrandom = math.random(-10,10)
  20. ymathrandom = math.random(2,10)
  21. zmathrandom = math.random(-10,10)
  22.  
  23.  
  24. player = game:service("Players").LocalPlayer
  25. char = player.Character
  26. local beat = true
  27. local beattime = 0.6
  28. suit = Instance.new("Model", char)
  29. suit.Name = "Gaster"
  30. local vDebounce = false
  31. Torso = char.Torso
  32. cf=CFrame.new
  33. euler=CFrame.fromEulerAnglesXYZ
  34. local SHOT_SPEED = 100
  35. local SHOT_TIME = 1
  36. local NOZZLE_OFFSET = Vector3.new(0, 0, 0)
  37. mouse = player:GetMouse()
Advertisement
Add Comment
Please, Sign In to add comment