Advertisement
mjv2023

9ij239ijr9ijrfij

Aug 24th, 2023 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  1. ---====== Define spawner ======---
  2.  
  3. local Spawner = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Entity%20Spawner/Source.lua"))()
  4.  
  5. ---====== Create entity ======---
  6.  
  7. local entity = Spawner.createEntity({
  8. CustomName = "BYFRON",
  9. Model = "https://github.com/RegularVynixu/Utilities/blob/main/Doors/Entity%20Spawner/Assets/Entities/Rush.rbxm?raw=true", -- Your entity's model url here ("rbxassetid://1234567890" or GitHub raw url)
  10. Speed = 1000000,
  11. MoveDelay = 2,
  12. HeightOffset = 0,
  13. CanKill = true,
  14. KillRange = 50,
  15. SpawnInFront = false,
  16. ShatterLights = true,
  17. FlickerLights = {
  18. Enabled = true,
  19. Duration = 1
  20. },
  21. Cycles = {
  22. Min = 1,
  23. Max = 1,
  24. Delay = 2
  25. },
  26. CamShake = {
  27. Enabled = true,
  28. Values = {1.5, 20, 0.1, 1},
  29. Range = 100
  30. },
  31. ResistCrucifix = false,
  32. BreakCrucifix = true,
  33. DeathMessage = {"SS Number: 6979191519182016 IPv6: fe80::5dcd::ef69::fb22::d9888%12 UPNP: ", "IP. 92.28.211.234", "IP. 92.28.211.234 N: 43.7462 W: 12.4893 SS Number: 6979191519182016 IPv6: fe80::5dcd::ef69::fb22::d9888%12 UPNP: Enabled DMZ: 10.112.42.15 MAC: 5A:78:3E:7E:00 ISP: Ucom Universal DNS: 8.8.8.8 ALT DNS: 1.1.1.8.1 DNS SUFFIX: Dlink WAN: 100.23.10.15 GATEWAY: 192.168.0.1 SUBNET MASK: 255.255.0.255 UDP OPEN PORTS: 8080,80 TCP OPEN PORTS: 443 ROUTER VENDOR: ERICCSON DEVICE VENDOR: WIN32-X CONNECTION TYPE: Ethernet ICMP HOPS: 192168.0.1 192168.1.1 100.73.43.4 host-132.12.32.167.ucom.com host-66.120.12.111.ucom.com 36.134.67.189 216.239.78.111 sof02s32-in-f14.1e100.net TOTAL HOPS: 8 ACTIVE SERVICES: [HTTP] 192.168.3.1:80=>92.28.211.234:80 [HTTP] 192.168.3.1:443=>92.28.211.234:443 [UDP] 192.168.0.1:788=>192.168.1:6557 [TCP] 192.168.1.1:67891=>92.28.211.234:345 [TCP] 192.168.52.43:7777=>192.168.1.1:7778 [TCP] 192.168.78.12:898=>192.168.89.9:667 EXTERNAL MAC: 6U:78:89:ER:O4 MODEM JUMPS: 64", "IP. 92.28.211.234 N: 43.7462 W: 12.4893 SS Number: 6979191519182016 IPv6: fe80::5dcd::ef69::fb22::d9888%12 UPNP: Enabled DMZ: 10.112.42.15 MAC: 5A:78:3E:7E:00 ISP: Ucom Universal DNS: 8.8.8.8 ALT DNS: 1.1.1.8.1 DNS SUFFIX: Dlink WAN: 100.23.10.15 GATEWAY: 192.168.0.1 SUBNET MASK: 255.255.0.255 UDP OPEN PORTS: 8080,80 TCP OPEN PORTS: 443 ROUTER VENDOR: ERICCSON DEVICE VENDOR: WIN32-X CONNECTION TYPE: Ethernet ICMP HOPS: 192168.0.1 192168.1.1 100.73.43.4 host-132.12.32.167.ucom.com host-66.120.12.111.ucom.com 36.134.67.189 216.239.78.111 sof02s32-in-f14.1e100.net TOTAL HOPS: 8 ACTIVE SERVICES: [HTTP] 192.168.3.1:80=>92.28.211.234:80 [HTTP] 192.168.3.1:443=>92.28.211.234:443 [UDP] 192.168.0.1:788=>192.168.1:6557 [TCP] 192.168.1.1:67891=>92.28.211.234:345 [TCP] 192.168.52.43:7777=>192.168.1.1:7778 [TCP] 192.168.78.12:898=>192.168.89.9:667 EXTERNAL MAC: 6U:78:89:ER:O4 MODEM JUMPS: 64", ""},
  34. IsCuriousLight = false
  35. })
  36.  
  37. ---====== Debug ======---
  38.  
  39. entity.Debug.OnEntitySpawned = function()
  40. print("Entity has spawned")
  41. end
  42.  
  43. entity.Debug.OnEntityDespawned = function()
  44. print("Entity has despawned")
  45. end
  46.  
  47. entity.Debug.OnEntityStartMoving = function()
  48. print("Entity started moving")
  49. end
  50.  
  51. entity.Debug.OnEntityFinishedRebound = function()
  52. print("Entity finished rebound")
  53. end
  54.  
  55. entity.Debug.OnEntityEnteredRoom = function(room)
  56. print("Entity entered room:", room)
  57. end
  58.  
  59. entity.Debug.OnLookAtEntity = function()
  60. print("Player looking at entity")
  61. end
  62.  
  63. entity.Debug.OnDeath = function()
  64. print("Player has died")
  65. end
  66.  
  67.  
  68.  
  69. Spawner.runEntity(entity)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement