iiMurpyh

Untitled

Dec 17th, 2017
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.23 KB | None | 0 0
  1. -- A guy who exists
  2. -- Praise bee to the bubble.
  3. -- by iimurpyh, dont steal u hecks
  4. local player = game:GetService("Players").LocalPlayer
  5. local plr = player.Character
  6.  
  7. -- Visuals
  8. gui1=Instance.new("BillboardGui")
  9. gui1.Parent= game.Workspace.dotylake352.Head
  10. gui1.Adornee= game.Workspace.dotylake352.Head
  11. gui1.Size=UDim2.new(2.5,0,2.5,0)
  12. gui1.StudsOffset=Vector3.new(0,0,0)
  13. gui1.AlwaysOnTop = true
  14. text1=Instance.new("ImageLabel")
  15. text1.Image = "http://www.roblox.com/asset/?id=45120559" --[[Face Image Source (If you wish to change the face to a different decal put it in there]]
  16. text1.Size=UDim2.new(1,0,1,0)
  17. text1.Position=UDim2.new(0,0,0,0)
  18. text1.BackgroundTransparency = 1
  19. text1.Parent=gui1
  20. local skin = Instance.new("Skin")
  21. skin.Parent = game.Players.LocalPlayer.Character.Torso
  22. skin.SkinColor = BrickColor.new("Cool yellow")
  23.  
  24. local naeeym = Instance.new("BillboardGui",plr)
  25. naeeym.Size = UDim2.new(0,100,0,40)
  26. naeeym.StudsOffset = Vector3.new(0,2,0)
  27. naeeym.Adornee = plr.Head
  28. local tecks = Instance.new("TextLabel",naeeym)
  29. tecks.BackgroundTransparency = 1
  30. tecks.BorderSizePixel = 0
  31. tecks.Text = "A guy who exists"
  32. tecks.Font = "Arcade "
  33. tecks.FontSize = "Size24"
  34. tecks.TextStrokeTransparency = 0
  35. tecks.TextStrokeColor3 = Color3.new(0,0,0)
  36. tecks.TextColor3 = Color3.new(0,0,0)
  37. tecks.Size = UDim2.new(1,0,0.5,0)
  38. -- boom oof pow
  39.  local player = game:GetService("Players").LocalPlayer
  40. local plr = player.Character
  41. local mouse = player:GetMouse()
  42.  
  43.  
  44. hand = Instance.new('Tool')
  45. hand.CanBeDropped = False
  46. hand.RequiresHandle = False
  47. hand.Name = "meme"
  48. hand.Parent = player.Backpack
  49.  
  50. local function createExplosion(location,power)
  51.     boom = Instance.new('Explosion',workspace)
  52.     boom.Position = location
  53.     boom.BlastRadius = power
  54.     boom.Hit.Connect(onHit)
  55.     sfx = Instance.new('Sound', boom)
  56.     sfx.SoundId = 'rbxassetid://573314737'
  57.     sfx:Play()
  58. end
  59. local function onActivate()
  60.     local clickLocation = mouse.Hit
  61.     local hpos = clickLocation.p
  62.     createExplosion(hpos,5)
  63.     boom.Hit:connect(onHit)
  64.  
  65. end
  66. local function onHit(part)
  67.     if part.Parent.ClassName == "Model" and part.Parent:FindFirstChildOfClass("Humanoid") then
  68.         part:Destroy()
  69.     end
  70. end
  71.  
  72. hand.Activated:connect(onActivate)
Add Comment
Please, Sign In to add comment