Advertisement
HenloMyDude

f

Mar 17th, 2020
1,946
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. local owner = game:service("Players").youngmacka123
  2. local plr = owner
  3. local char = plr.Character
  4. local root = char:WaitForChild("HumanoidRootPart")
  5. local hum = char:FindFirstChildOfClass("Humanoid")
  6.  
  7. function bigboy(size)
  8. local sc = size
  9. for k,g in pairs (char:GetDescendants()) do
  10. if g:IsA("Weld") then
  11. local Angle0 = g.C0 - Vector3.new(g.C0.X,g.C0.Y,g.C0.Z)
  12. local Angle1 = g.C1 - Vector3.new(g.C1.X,g.C1.Y,g.C1.Z)
  13. g.C0 = CFrame.new(g.C0.X*sc,g.C0.Y*sc,g.C0.Z*sc) * Angle0
  14. g.C1 = CFrame.new(g.C1.X*sc,g.C1.Y*sc,g.C1.Z*sc) * Angle1
  15. elseif g:IsA("SpecialMesh") then
  16. if g.MeshType ~= Enum.MeshType.Head then
  17. g.Scale = g.Scale*sc
  18. end
  19. elseif g:IsA("Part") or g:IsA("MeshPart") then
  20. g.Size = g.Size*sc
  21. elseif g:IsA("Motor") or g:IsA("Motor6D") then
  22. local Angle0 = g.C0 - Vector3.new(g.C0.X,g.C0.Y,g.C0.Z)
  23. local Angle1 = g.C1 - Vector3.new(g.C1.X,g.C1.Y,g.C1.Z)
  24. g.C0 = CFrame.new(g.C0.X*sc,g.C0.Y*sc,g.C0.Z*sc) * Angle0
  25. g.C1 = CFrame.new(g.C1.X*sc,g.C1.Y*sc,g.C1.Z*sc) * Angle1
  26. end
  27. end
  28. hum.HipHeight = hum.HipHeight*sc
  29. end
  30.  
  31. plr.Chatted:connect(function(msg)
  32. if msg:sub(1, 7) == "/e goto" then
  33. local model = workspace:FindFirstChild(msg:sub(9))
  34. if model then
  35. local rut = model:FindFirstChild("HumanoidRootPart")
  36. if rut then
  37. root.CFrame = rut.CFrame
  38. end
  39. end
  40. end
  41. if msg:sub(1, 7) == "/e size" then
  42. bigboy(msg:sub(9))
  43. end
  44. if msg == "/e god" then
  45. hum.MaxHealth = "inf"
  46. hum.Health = "inf"
  47. Instance.new("ForceField", char).Visible = false
  48. end
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement