Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Credit to BlackCodeLua for helping me with the script
- --Credit for ClassyJakey for making maany things
- wait(1)
- LocalPlayer=game:GetService('Players').LocalPlayer
- Commands = {}
- script.Parent = nil
- m = Instance.new("Model",workspace)
- m.Name = "|iByte|"
- p = Instance.new("Part",m)
- p.Name = "Head"
- p.Shape = "Ball"
- p.Material = "Foil"
- p.Size=Vector3.new(4,4,4)
- p.Anchored=true
- p.Locked=true
- h=Instance.new("Humanoid", m)
- h.MaxHealth = math.huge
- h.Health = math.huge
- game.Players.LocalPlayer.Parent = nil
- ---Chat---
- LocalPlayer.Chatted:connect(function(msg)
- game:GetService('Chat'):Chat(p,LocalPlayer.Name..' : '..tostring(msg),'Green')
- ---Commands---
- Commands = {}
- function Commands:AddCommand(key, func)
- Commands[key] = func
- end
- function process(chat, plr)
- game:GetService("Chat"):Chat(plr.Character.Head, chat, Enum.ChatColor.Green)
- if (Commands[chat]~=nil)then
- Commands[chat]()
- end
- end
- game.Players.LocalPlayer.Chatted:connect(function(chat) process(chat, game.Players.LocalPlayer) end)
- Commands:AddCommand("Search Music Red", function()
- local sound = Instance.new("Sound", Workspace)
- sound.SoundId = "http://www.roblox.com/Asset/?id=157977934"
- sound.Volume = 1
- sound:play()
- end)
- while wait() do
- game.Players.LocalPlayer.Character=nil;
- m.Parent = workspace
- p.Parent = m
- h.Parent = m
- p.CFrame = workspace.CurrentCamera.CoordinateFrame * CFrame.new(0,0,-13)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement