Advertisement
Vortex_Tech

Untitled

Dec 14th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. print("Hello world!")
  2. wait(5)
  3. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  4. local mainPlayer = game.Players.lepigeons
  5. local playerCaracter = mainPlayer.Character
  6. Instance.new("Fire", playerCaracter.RightHand)
  7. Instance.new("Fire", playerCaracter.LeftHand)
  8. playerCaracter.Humanoid.BodyDepthScale.Value = 0.9
  9. playerCaracter.Humanoid.BodyHeightScale.Value = 0.5
  10. local victimevent = Instance.new("RemoteEvent",ReplicatedStorage)
  11. victimevent.Name = "oops"
  12. Instance.new("ScreenGui",game.Players.lepigeons.PlayerGui)
  13. local txtbox = Instance.new("TextBox",game.Players.lepigeons.PlayerGui.ScreenGui)
  14. local victime = "Kij0tas21"
  15. txtbox.ClearTextOnFocus = true
  16. txtbox.Text = ""
  17. txtbox.Font = Enum.Font.Code
  18. txtbox.PlaceholderText = "What is the secret word?"
  19. print(txtbox.Text)
  20. txtbox.Position = UDim2.new(0, 3, 0, 200)
  21. txtbox.Size = UDim2.new(0,100,0,20)
  22. txtbox.BackgroundColor3 = Color3.fromHSV(255, 255, 255)
  23. txtbox.Name = "victim"
  24. lava = mainPlayer.Character.Head
  25. function Kill(part)
  26. Player = part.Parent -- This will refer to the whole player model
  27. Torso = Player.Torso -- This will refer to the player's Torso
  28. Instance.new("Fire",Player.Head)
  29. wait(5)
  30. Torso:Destroy()
  31.  
  32. end
  33. lava.Touched:connect(Kill)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement