Advertisement
pitrioptixiop

Roblox | Arts and crafters baldi script

Jul 15th, 2018
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.42 KB | None | 0 0
  1. --made by retrojoooooono
  2. warn("made by retrojooooono the baldi script principal script and bsoda and zestybar too and bully")
  3. wait(1)
  4. victim = nil
  5. lp = game.Players.LocalPlayer
  6. char = lp.Character
  7. torso = nil
  8. gc = char:GetChildren()
  9. char:FindFirstChildOfClass("Humanoid").WalkSpeed = 25
  10. hum = char:FindFirstChildOfClass("Humanoid")
  11. for i=1, #gc do
  12.     if gc[i].ClassName == "Accessory" or gc[i].ClassName == "Hat" or gc[i].ClassName == "Shirt" or gc[i].ClassName == "Pants" or gc[i].ClassName == "ShirtGraphic" or gc[i].ClassName == "ShirtGraphics" then
  13.         gc[i]:Destroy()
  14.     end
  15.     if gc[i].ClassName == "Part" then
  16.         gc[i].Transparency = 1
  17.     end
  18. end
  19. char.Head:FindFirstChildOfClass("Decal"):Destroy()
  20. head = char.Head
  21. ft = char:FindFirstChild("Torso")
  22. if ft then
  23.     torso = ft 
  24. elseif char:FindFirstChild("UpperTorso") then
  25.     torso = char:FindFirstChild("UpperTorso")
  26. end
  27. bgui = Instance.new("BillboardGui",torso)
  28. bgui.Size = UDim2.new(0,200,0,300)
  29. bgui.Adornee = torso
  30. il = Instance.new("ImageLabel",bgui)
  31. il.BackgroundTransparency = 1
  32. il.Size = UDim2.new(0,200,0,300)
  33. il.Image = "http://www.roblox.com/asset/?id=1829618185"
  34. bgui2 = Instance.new("BillboardGui",torso)
  35. bgui2.Name = "TextGui"
  36. bgui2.Size = UDim2.new(0,500,0,1000)
  37. bgui2.Adornee = torso
  38. text = Instance.new("TextLabel",bgui2)
  39. text.BackgroundTransparency = 1
  40. text.Size = UDim2.new(0,500,0,100)
  41. text.Position = UDim2.new(0,0,0,250)
  42. text.TextColor3 = Color3.new(1,1,1)
  43. text.Font = Enum.Font.Cartoon
  44. text.Text = ""
  45. text.TextScaled = true
  46. function changetext(msg)
  47. for i=1, string.len(msg) do
  48. wait(0.01)
  49. text.Text = string.sub(msg,1,i)
  50. end
  51. wait(0.2)
  52. for i=1, 10 do
  53. wait(0.02)
  54. text.TextTransparency = text.TextTransparency + 0.1
  55. end
  56. text.Text = ""
  57. text.TextTransparency = 0
  58. end
  59.  
  60. attackdebounce = false
  61.  
  62. while true do
  63. wait(0.01)
  64. gp = game:GetService("Players"):GetPlayers()
  65. for a=1, #gp do
  66. if gp[a] ~= lp then
  67. if gp[a]:GetMouse().Target.Parent == char then
  68. il.Image = "http://www.roblox.com/asset/?id=1922643053"
  69. repeat
  70. hum.WalkToPoint = gp[a].Character:FindFirstChildOfClass("Head").Position
  71. changetext("WHOOOOOSH")
  72. until (head.Position - gp[a].Character:FindFirstChildOfClass("Head").Position).magnitude < 5
  73. gp[a].Character:FindFirstChildOfClass("Head").CFrame = gp[a].Character:FindFirstChildOfClass("Head").CFrame + Vector3.new(math.random(-250,250),0,math.random(-250,250))
  74. il.Image = "http://www.roblox.com/asset/?id=1829618185"
  75. end
  76. end
  77. end
  78. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement