Advertisement
lafur

Untitled

Oct 7th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.64 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,Mouse,mouse,UserInputService,ContextActionService = owner
  4. local RealPlayer = Player
  5. do print("FE Compatibility code by Mokiros")local a=RealPlayer;script.Parent=a.Character;local b=Instance.new("RemoteEvent")b.Name="UserInput_Event"local function c()local d={_fakeEvent=true,Functions={},Connect=function(self,e)table.insert(self.Functions,e)end}d.connect=d.Connect;return d end;local f={Target=nil,Hit=CFrame.new(),KeyUp=c(),KeyDown=c(),Button1Up=c(),Button1Down=c(),Button2Up=c(),Button2Down=c()}local g={InputBegan=c(),InputEnded=c()}local CAS={Actions={},BindAction=function(self,h,i,j,...)CAS.Actions[h]=i and{Name=h,Function=i,Keys={...}}or nil end}CAS.UnbindAction=CAS.BindAction;local function k(self,l,...)local d=f[l]if d and d._fakeEvent then for m,e in pairs(d.Functions)do e(...)end end end;f.TrigEvent=k;g.TrigEvent=k;b.OnServerEvent:Connect(function(n,o)if n~=a then return end;f.Target=o.Target;f.Hit=o.Hit;if not o.isMouse then local p=o.UserInputState==Enum.UserInputState.Begin;if o.UserInputType==Enum.UserInputType.MouseButton1 then return f:TrigEvent(p and"Button1Down"or"Button1Up")end;if o.UserInputType==Enum.UserInputType.MouseButton2 then return f:TrigEvent(p and"Button2Down"or"Button2Up")end;for m,d in pairs(CAS.Actions)do for m,q in pairs(d.Keys)do if q==o.KeyCode then d.Function(d.Name,o.UserInputState,o)end end end;f:TrigEvent(p and"KeyDown"or"KeyUp",o.KeyCode.Name:lower())g:TrigEvent(p and"InputBegan"or"InputEnded",o,false)end end)b.Parent=NLS([==[local a=game:GetService("Players").LocalPlayer;local b=script:WaitForChild("UserInput_Event")local c=a:GetMouse()local d=game:GetService("UserInputService")local e=function(f,g)if g then return end;b:FireServer({KeyCode=f.KeyCode,UserInputType=f.UserInputType,UserInputState=f.UserInputState,Hit=c.Hit,Target=c.Target})end;d.InputBegan:Connect(e)d.InputEnded:Connect(e)local h,i;while wait(1/30)do if h~=c.Hit or i~=c.Target then h,i=c.Hit,c.Target;b:FireServer({isMouse=true,Target=i,Hit=h})end end]==],Player.Character)local r=game;local s={__index=function(self,q)local t=rawget(self,"_RealService")if t then return typeof(t[q])=="function"and function(m,...)return t[q](t,...)end or t[q]end end,__newindex=function(self,q,u)local t=rawget(self,"_RealService")if t then t[q]=u end end}local function v(d,w)d._RealService=typeof(w)=="string"and r:GetService(w)or w;return setmetatable(d,s)end;local x={GetService=function(self,t)return rawget(self,t)or r:GetService(t)end,Players=v({LocalPlayer=v({GetMouse=function(self)return f end},Player)},"Players"),UserInputService=v(g,"UserInputService"),ContextActionService=v(CAS,"ContextActionService"),RunService=v({_btrs={},RenderStepped=r:GetService("RunService").Heartbeat,BindToRenderStep=function(self,h,m,i)self._btrs[h]=self.Heartbeat:Connect(i)end,UnbindFromRenderStep=function(self,h)self._btrs[h]:Disconnect()end},"RunService")}rawset(x.Players,"localPlayer",x.Players.LocalPlayer)x.service=x.GetService;v(x,game)game,owner=x,x.Players.LocalPlayer end Tool = script.Parent
  6. local arms = nil
  7. local torso = nil
  8. local fakearms = {}
  9. local welds = {}
  10.  
  11. function Equip(mouse)
  12. wait(0.01)
  13. arms = {Tool.Parent:FindFirstChild("Left Arm"), Tool.Parent:FindFirstChild("Right Arm")}
  14. torso = Tool.Parent:FindFirstChild("Torso")
  15. model = Instance.new("Model", workspace)
  16. model.Name = "Arms"
  17. humanoid = Instance.new("Humanoid", model)
  18. humanoid.Name = "ArmHumanoid"
  19. local Link = Instance.new("ObjectValue",model)
  20. Link.Name, Link.Value = "HumanoidLink", torso.Parent.Humanoid
  21. local Shirt
  22. for _,Child in pairs(Tool.Parent:GetChildren()) do
  23. if Child:IsA("Shirt") then
  24. Shirt = Child
  25. break
  26. end
  27. end
  28. if Shirt then
  29. Shirt:Clone().Parent = model
  30. Shirt.Changed:connect(function()
  31. model.Shirt.ShirtTemplate = Tool.Parent.Shirt.ShirtTemplate
  32. end)
  33. Tool.Parent.ChildAdded:connect(function(newChild)
  34. if newChild:IsA("Shirt") then
  35. model.Shirt.ShirtTemplate = newChild.ShirtTemplate
  36. end
  37. end)
  38. end
  39. for n,v in ipairs(arms) do
  40. local P = v:Clone()
  41. P.Parent = model
  42. P.TopSurface, P.BottomSurface = "Smooth", "Smooth"
  43. local PW = Instance.new("Weld")
  44. PW.Name = "FakeArmWeld"
  45. PW.Parent = v
  46. PW.Part0, PW.Part1, PW.C0, PW.C1 = v, P, v.CFrame:inverse(), P.CFrame:inverse()
  47. v.Transparency = 1
  48. fakearms[n] = P
  49. end
  50. fakearms[2].RightGrip:Destroy()
  51. mouse.TargetFilter = model
  52. end
  53.  
  54. function Unequip(mouse)
  55. model:Destroy()
  56. for n,v in ipairs(arms) do
  57. v.Transparency = 0
  58. end
  59. end
  60.  
  61. Tool.Equipped:connect(Equip)
  62. Tool.Unequipped:connect(Unequip)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement