Categories > Exploiting > Scripts >

I need this asset converted to a lua script

Posts: 7

Threads: 3

Joined: Oct, 2020

Reputation: 0

Posted

Yo so i got synapse a couple days ago, Ive been trying to get a script gui to work does anyone thing they can get this converted to lua script(I dont want the require function). The rbxm file is downloadable through this link: https://easyupload.io/e15pms (edit theres a faster download)

 

  • 0

“Code is like humor. When you have to explain it, it’s bad.”

MainDab

Main_EX

Posts: 332

Threads: 29

Joined: Sep, 2020

Reputation: 10

Replied

What are you trying to do? Be more specific. What asset? And isn't the RBXM file openable? And if you're looking to convert a module and its private, can't help with that. 

  • 0

Posts: 7

Threads: 3

Joined: Oct, 2020

Reputation: 0

Replied

@MainDab Im trying to get the folder converted into a executable code in synapse so i can use it in games.

  • 0

“Code is like humor. When you have to explain it, it’s bad.”

Posts: 224

Threads: 44

Joined: Mar, 2020

Reputation: -16

Replied

@crazysnake

hmmmm its my first time trying  making guis as well ! I just did my first one and it took alot to understand cause im pretty dumb , i reccomend u watch tutorials 

  • 0

Exploit i have : Synapse X , Sir hurt . 

Hubs i use , Dark hub , Alpha X 

Guis I made : Tower of hell > https://pastebin.com/5gV0H08w

Posts: 7

Threads: 3

Joined: Oct, 2020

Reputation: 0

Replied

@Exploithunter 
I have tried, sadly its a folder and none of the tutorials go over how to convert folders to executable lua.

  • 0

“Code is like humor. When you have to explain it, it’s bad.”

Posts: 224

Threads: 44

Joined: Mar, 2020

Reputation: -16

Replied

@crazysnake 

also make sure the workspace is changed to " CoreGui  for example 

ScreenGui.Parent = game.CoreGui

and then next to frame add

how it looks like

  1. Frame.Parent = ScreenGui
  2. Frame.BackgroundColor3 = Color3.fromRGB(170, 255, 255)
  3. Frame.Position = UDim2.new(0.236111104, 0, 0.231139645, 0)
  4. Frame.Size = UDim2.new(0, 514, 0, 288)
  5. ----------------------------------------------
  6. Frame.Active = true <<<<< what you need to Add
  7. Frame.Draggable = true
  8. this only counts if u didnt change the frame name if u did change it to yours
  • 0

Added

@crazysnake

also another example of the Core Gui thing 

  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local title = Instance.new("TextLabel")
  4. local TextButton = Instance.new("TextButton")
  5. local TextButton_2 = Instance.new("TextButton")
  6. local TextButton_3 = Instance.new("TextButton")
  7. local TextButton_4 = Instance.new("TextButton")
  8. local TextButton_5 = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui < << << < < << < << < <
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  • 0

Added

@crazysnake

also if you mean about the lua convert thing then its here >> https://www.roblox.com/library/1343400903/Gui-to-Lua-Converter-Revamped

  • 0

Exploit i have : Synapse X , Sir hurt . 

Hubs i use , Dark hub , Alpha X 

Guis I made : Tower of hell > https://pastebin.com/5gV0H08w

Posts: 7

Threads: 3

Joined: Oct, 2020

Reputation: 0

Replied

@Exploithunter Mainly the only thing im looking for in that script is the Server Admin script. All i want is to convert that to one lua script able to be run in synapse.

  • 0

“Code is like humor. When you have to explain it, it’s bad.”

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )