The_Keeminator

LocalScript Roblox

Apr 13th, 2020
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. --Client Variables
  2. local player = game.Players.LocalPlayer
  3. local char = player.Character or player.CharacterAdded:wait()
  4.  
  5. local npcnil = require(game.ReplicatedStorage.Modules.npc).new("npc",workspace.npcSpawn.CFrame,
  6.     {
  7.         "Hello!",
  8.         "Welcome to HakeemLand!",
  9.         "I'm the God, and I'm glad you're here.",
  10.         "Subscribe to The_Keeminator on YouTube while you're at it."
  11. },workspace.camera.CFrame)
  12.  
  13. char.Humanoid.Died:connect(function()
  14.     npcnil()
  15. end)
Add Comment
Please, Sign In to add comment